Install and load required packages

library(httr)
library(jsonlite)
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✓ ggplot2 3.3.3     ✓ purrr   0.3.4
## ✓ tibble  3.1.2     ✓ dplyr   1.0.6
## ✓ tidyr   1.1.3     ✓ stringr 1.4.0
## ✓ readr   1.4.0     ✓ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter()  masks stats::filter()
## x purrr::flatten() masks jsonlite::flatten()
## x dplyr::lag()     masks stats::lag()
library(knitr)
library(haven)
library(qwraps2)
library(rmarkdown)

NHL records API

get.records <- function(table.name, id=NULL, most.recent.id=NULL, ...) {
  base.url <- "https://records.nhl.com/site/api"
  
  if (!is.null(table.name)) {  ## has a table name
    if (table.name %in% ("franchise") & (!is.null(id)) | (!is.null(most.recent.id))) {  ## table name is this one and given id
      return ("The table selected cannot be returned with the specified ID and or most recent team ID input.")
    }  
    
    if (is.null(id) & is.null(most.recent.id)) {  ## has table name but no id or most recent team id
      full.url <- paste0(base.url, "/", table.name)
    }
    
    if (table.name %in% c("franchise-team-totals",
                          "franchise-season-records", 
                          "franchise-goalie-records", 
                          "franchise-skater-records") & (!is.null(id)) & (is.null(most.recent.id))) {  ## table name is one of the 4 and given id
      full.url <- paste0(base.url, "/", table.name, "?cayenneExp=franchiseId=", id)
    }
    
    if (table.name %in% c("franchise-team-totals",
                          "franchise-season-records", 
                          "franchise-goalie-records", 
                          "franchise-skater-records") & (!is.null(id)) & (!is.null(most.recent.id))){  ## table name is one of the 4 and given id and given most.recent id
      return (("Only ID and table name are used, please delete most recent team ID entry."))
    }
    
    if (table.name %in% c("franchise-team-totals",
                          "franchise-season-records", 
                          "franchise-goalie-records", 
                          "franchise-skater-records") & (is.null(id)) & (!is.null(most.recent.id))){  ## table name is one of the 4 and only given most.recent id
      return (("Only ID and table name are used, please delete most recent team ID and try using ID instead."))
    }    

    if (table.name %in% ("franchise-detail") & (is.null(id)) & (!is.null(most.recent.id))) {  ## table name is this one and given most recent id
      full.url <- paste0(base.url, "/", table.name, "?cayenneExp=mostRecentTeamId=", most.recent.id)
    }
    
    if (table.name %in% ("franchise-detail") & (!is.null(id)) & (!is.null(most.recent.id))) {  ## table name is this one and given most recent id and id
      return ("Only most recent team ID and table name are used, please delete ID entry.")
    }
    
    if (table.name %in% ("franchise-detail") & (!is.null(id)) & (is.null(most.recent.id))) {  ## table name is this one and given only id
      return ("Please provide the most recent team ID to get results.")
    }  
  
    nfl.records <- GET(full.url)
    nfl.records.txt <- content(nfl.records, "text")  ## convert to JSON text form
    nfl.records.json <- fromJSON(nfl.records.txt, flatten=TRUE)  ## convert to list
    
    return (nfl.records.json$data)
    
  }
  
  else {  ## if no table name
    return ("Table name is invalid.")
  }
}

test different scenarios

#get.records(id=23)
#get.records("franchise-team-totals", 26, 3)
#get.records("franchise-detail", id=23, most.recent.id = 23)
#get.records("franchise-detail", most.recent.id = 23)

NHL stats API

franchise <- GET("https://records.nhl.com/site/api/franchise")
franchise.text <- content(franchise, "text")
## No encoding supplied: defaulting to UTF-8.
franchise.json <- fromJSON(franchise.text, flatten=TRUE)
franchise.json$data
##    id firstSeasonId              fullName lastSeasonId mostRecentTeamId
## 1   1      19171918    Montréal Canadiens           NA                8
## 2   2      19171918    Montreal Wanderers     19171918               41
## 3   3      19171918      St. Louis Eagles     19341935               45
## 4   4      19191920       Hamilton Tigers     19241925               37
## 5   5      19171918   Toronto Maple Leafs           NA               10
## 6   6      19241925         Boston Bruins           NA                6
## 7   7      19241925      Montreal Maroons     19371938               43
## 8   8      19251926    Brooklyn Americans     19411942               51
## 9   9      19251926  Philadelphia Quakers     19301931               39
## 10 10      19261927      New York Rangers           NA                3
## 11 11      19261927    Chicago Blackhawks           NA               16
## 12 12      19261927     Detroit Red Wings           NA               17
## 13 13      19671968      Cleveland Barons     19771978               49
## 14 14      19671968     Los Angeles Kings           NA               26
## 15 15      19671968          Dallas Stars           NA               25
## 16 16      19671968   Philadelphia Flyers           NA                4
## 17 17      19671968   Pittsburgh Penguins           NA                5
## 18 18      19671968       St. Louis Blues           NA               19
## 19 19      19701971        Buffalo Sabres           NA                7
## 20 20      19701971     Vancouver Canucks           NA               23
## 21 21      19721973        Calgary Flames           NA               20
## 22 22      19721973    New York Islanders           NA                2
## 23 23      19741975     New Jersey Devils           NA                1
## 24 24      19741975   Washington Capitals           NA               15
## 25 25      19791980       Edmonton Oilers           NA               22
## 26 26      19791980   Carolina Hurricanes           NA               12
## 27 27      19791980    Colorado Avalanche           NA               21
## 28 28      19791980       Arizona Coyotes           NA               53
## 29 29      19911992       San Jose Sharks           NA               28
## 30 30      19921993       Ottawa Senators           NA                9
## 31 31      19921993   Tampa Bay Lightning           NA               14
## 32 32      19931994         Anaheim Ducks           NA               24
## 33 33      19931994      Florida Panthers           NA               13
## 34 34      19981999   Nashville Predators           NA               18
## 35 35      19992000         Winnipeg Jets           NA               52
## 36 36      20002001 Columbus Blue Jackets           NA               29
## 37 37      20002001        Minnesota Wild           NA               30
## 38 38      20172018  Vegas Golden Knights           NA               54
## 39 39      20212022        Seattle Kraken           NA               55
##    teamAbbrev teamCommonName teamPlaceName
## 1         MTL      Canadiens      Montréal
## 2         MWN      Wanderers      Montreal
## 3         SLE         Eagles     St. Louis
## 4         HAM         Tigers      Hamilton
## 5         TOR    Maple Leafs       Toronto
## 6         BOS         Bruins        Boston
## 7         MMR        Maroons      Montreal
## 8         BRK      Americans      Brooklyn
## 9         QUA        Quakers  Philadelphia
## 10        NYR        Rangers      New York
## 11        CHI     Blackhawks       Chicago
## 12        DET      Red Wings       Detroit
## 13        CLE         Barons     Cleveland
## 14        LAK          Kings   Los Angeles
## 15        DAL          Stars        Dallas
## 16        PHI         Flyers  Philadelphia
## 17        PIT       Penguins    Pittsburgh
## 18        STL          Blues     St. Louis
## 19        BUF         Sabres       Buffalo
## 20        VAN        Canucks     Vancouver
## 21        CGY         Flames       Calgary
## 22        NYI      Islanders      New York
## 23        NJD         Devils    New Jersey
## 24        WSH       Capitals    Washington
## 25        EDM         Oilers      Edmonton
## 26        CAR     Hurricanes      Carolina
## 27        COL      Avalanche      Colorado
## 28        ARI        Coyotes       Arizona
## 29        SJS         Sharks      San Jose
## 30        OTT       Senators        Ottawa
## 31        TBL      Lightning     Tampa Bay
## 32        ANA          Ducks       Anaheim
## 33        FLA       Panthers       Florida
## 34        NSH      Predators     Nashville
## 35        WPG           Jets      Winnipeg
## 36        CBJ   Blue Jackets      Columbus
## 37        MIN           Wild     Minnesota
## 38        VGK Golden Knights         Vegas
## 39        SEA         Kraken       Seattle
team.id.index <- franchise.json$data %>% select("id", "mostRecentTeamId", "fullName", "teamAbbrev", "teamCommonName", "teamPlaceName")
team.id.index
##    id mostRecentTeamId              fullName teamAbbrev teamCommonName
## 1   1                8    Montréal Canadiens        MTL      Canadiens
## 2   2               41    Montreal Wanderers        MWN      Wanderers
## 3   3               45      St. Louis Eagles        SLE         Eagles
## 4   4               37       Hamilton Tigers        HAM         Tigers
## 5   5               10   Toronto Maple Leafs        TOR    Maple Leafs
## 6   6                6         Boston Bruins        BOS         Bruins
## 7   7               43      Montreal Maroons        MMR        Maroons
## 8   8               51    Brooklyn Americans        BRK      Americans
## 9   9               39  Philadelphia Quakers        QUA        Quakers
## 10 10                3      New York Rangers        NYR        Rangers
## 11 11               16    Chicago Blackhawks        CHI     Blackhawks
## 12 12               17     Detroit Red Wings        DET      Red Wings
## 13 13               49      Cleveland Barons        CLE         Barons
## 14 14               26     Los Angeles Kings        LAK          Kings
## 15 15               25          Dallas Stars        DAL          Stars
## 16 16                4   Philadelphia Flyers        PHI         Flyers
## 17 17                5   Pittsburgh Penguins        PIT       Penguins
## 18 18               19       St. Louis Blues        STL          Blues
## 19 19                7        Buffalo Sabres        BUF         Sabres
## 20 20               23     Vancouver Canucks        VAN        Canucks
## 21 21               20        Calgary Flames        CGY         Flames
## 22 22                2    New York Islanders        NYI      Islanders
## 23 23                1     New Jersey Devils        NJD         Devils
## 24 24               15   Washington Capitals        WSH       Capitals
## 25 25               22       Edmonton Oilers        EDM         Oilers
## 26 26               12   Carolina Hurricanes        CAR     Hurricanes
## 27 27               21    Colorado Avalanche        COL      Avalanche
## 28 28               53       Arizona Coyotes        ARI        Coyotes
## 29 29               28       San Jose Sharks        SJS         Sharks
## 30 30                9       Ottawa Senators        OTT       Senators
## 31 31               14   Tampa Bay Lightning        TBL      Lightning
## 32 32               24         Anaheim Ducks        ANA          Ducks
## 33 33               13      Florida Panthers        FLA       Panthers
## 34 34               18   Nashville Predators        NSH      Predators
## 35 35               52         Winnipeg Jets        WPG           Jets
## 36 36               29 Columbus Blue Jackets        CBJ   Blue Jackets
## 37 37               30        Minnesota Wild        MIN           Wild
## 38 38               54  Vegas Golden Knights        VGK Golden Knights
## 39 39               55        Seattle Kraken        SEA         Kraken
##    teamPlaceName
## 1       Montréal
## 2       Montreal
## 3      St. Louis
## 4       Hamilton
## 5        Toronto
## 6         Boston
## 7       Montreal
## 8       Brooklyn
## 9   Philadelphia
## 10      New York
## 11       Chicago
## 12       Detroit
## 13     Cleveland
## 14   Los Angeles
## 15        Dallas
## 16  Philadelphia
## 17    Pittsburgh
## 18     St. Louis
## 19       Buffalo
## 20     Vancouver
## 21       Calgary
## 22      New York
## 23    New Jersey
## 24    Washington
## 25      Edmonton
## 26      Carolina
## 27      Colorado
## 28       Arizona
## 29      San Jose
## 30        Ottawa
## 31     Tampa Bay
## 32       Anaheim
## 33       Florida
## 34     Nashville
## 35      Winnipeg
## 36      Columbus
## 37     Minnesota
## 38         Vegas
## 39       Seattle
franchise_team_totals <- GET("https://records.nhl.com/site/api/franchise-team-totals")
franchise_team_totals.text <- content(franchise_team_totals, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_team_totals.json <- fromJSON(franchise_team_totals.text, flatten=TRUE)
franchise_team_totals.json$data
##      id activeFranchise firstSeasonId franchiseId gameTypeId gamesPlayed
## 1     1               1      19821983          23          2        2993
## 2     2               1      19821983          23          3         257
## 3     3               1      19721973          22          2        3788
## 4     4               1      19721973          22          3         306
## 5     5               1      19261927          10          2        6560
## 6     6               1      19261927          10          3         518
## 7     7               1      19671968          16          3         449
## 8     8               1      19671968          16          2        4171
## 9     9               1      19671968          17          2        4171
## 10   10               1      19671968          17          3         391
## 11   11               1      19241925           6          2        6626
## 12   12               1      19241925           6          3         675
## 13   13               1      19701971          19          2        3945
## 14   14               1      19701971          19          3         256
## 15   15               1      19171918           1          3         770
## 16   16               1      19171918           1          2        6787
## 17   17               1      19921993          30          2        2195
## 18   18               1      19921993          30          3         151
## 19   19               1      19271928           5          2        6516
## 20   20               1      19271928           5          3         545
## 21   21               1      19992000          35          2         902
## 22   22               1      19992000          35          3           4
## 23   23               1      19971998          26          3         112
## 24   24               1      19971998          26          2        1812
## 25   25               1      19931994          33          2        2109
## 26   26               1      19931994          33          3          54
## 27   27               1      19921993          31          2        2194
## 28   28               1      19921993          31          3         173
## 29   29               1      19741975          24          2        3633
## 30   30               1      19741975          24          3         295
## 31   31               1      19261927          11          3         548
## 32   32               1      19261927          11          2        6560
## 33   33               1      19321933          12          2        6293
## 34   34               1      19321933          12          3         618
## 35   35               1      19981999          34          2        1731
## 36   36               1      19981999          34          3         121
## 37   37               1      19671968          18          2        4173
## 38   38               1      19671968          18          3         404
## 39   39               1      19801981          21          3         221
## 40   40               1      19801981          21          2        3154
## 41   41               1      19951996          27          2        1978
## 42   42               1      19951996          27          3         219
## 43   43               1      19791980          25          2        3235
## 44   44               1      19791980          25          3         272
## 45   45               1      19701971          20          2        3945
## 46   46               1      19701971          20          3         246
## 47   47               1      19931994          32          3         162
## 48   48               1      19931994          32          2        2111
## 49   49               1      19931994          15          2        2109
## 50   50               1      19931994          15          3         200
## 51   51               1      19671968          14          2        4172
## 52   52               1      19671968          14          3         255
## 53   53               1      19961997          28          2        1360
## 54   54               1      19961997          28          3          57
## 55   55               1      19911992          29          3         241
## 56   56               1      19911992          29          2        2274
## 57   57               1      20002001          36          2        1568
## 58   58               1      20002001          36          3          41
## 59   59               1      20002001          37          2        1567
## 60   60               1      20002001          37          3          84
## 61   61               1      19671968          15          2        2062
## 62   62               1      19671968          15          3         166
## 63   63               1      19791980          27          3          80
## 64   64               1      19791980          27          2        1256
## 65   65               1      19791980          28          2        1338
## 66   66               1      19791980          28          3          62
## 67   67               1      19791980          26          2        1420
## 68   68               1      19791980          26          3          49
## 69   69               1      19761977          23          2         480
## 70   70               1      19761977          23          3           2
## 71   71               0      19171918           3          3          41
## 72   72               0      19171918           3          2         542
## 73   73               0      19201921           4          2         126
## 74   74               0      19251926           9          2         212
## 75   75               0      19251926           9          3           4
## 76   76               0      19301931           9          2          44
## 77   77               1      19261927          12          2         176
## 78   78               1      19261927          12          3           2
## 79   79               0      19171918           2          2           6
## 80   80               0      19191920           4          2          24
## 81   81               0      19241925           7          2         622
## 82   82               0      19241925           7          3          50
## 83   83               0      19251926           8          2         736
## 84   84               0      19251926           8          3          18
## 85   85               0      19341935           3          2          48
## 86   86               0      19671968          13          2         226
## 87   87               0      19671968          13          3          11
## 88   88               1      19721973          21          2         636
## 89   89               1      19721973          21          3          17
## 90   90               1      19741975          23          2         160
## 91   91               0      19761977          13          2         160
## 92   92               1      19301931          12          2          92
## 93   93               1      19301931          12          3           2
## 94   94               0      19411942           8          2          48
## 95   95               1      20112012          35          3          39
## 96   96               1      20112012          35          2         749
## 97   97               1      20142015          28          2         536
## 98   98               1      20172018          38          2         291
## 99   99               1      20172018          38          3          60
## 100 100               0      19701971          13          2         472
## 101 101               1      19171918           5          2          40
## 102 102               1      19171918           5          3           7
## 103 103               1      19191920           5          3          11
## 104 104               1      19191920           5          2         230
## 105 105               1      20142015          28          3           9
##     goalsAgainst goalsFor homeLosses homeOvertimeLosses homeTies homeWins
## 1           8902     8792        525                 85       96      790
## 2            634      697         53                  0       NA       74
## 3          11907    12045        678                 84      170      963
## 4            890      978         52                  1       NA       94
## 5          20020    20041       1143                 76      448     1614
## 6           1447     1404        104                  0        1      137
## 7           1332     1335         97                  0       NA      135
## 8          12255    13690        584                 93      193     1216
## 9          14049    13874        683                 60      205     1138
## 10          1131     1190         85                  0       NA      113
## 11         19137    21112        960                 92      376     1885
## 12          1907     1956        151                  2        3      194
## 13         11966    12471        639                 84      197     1053
## 14           765      763         54                  0       NA       73
## 15          1951     2299        133                  0        3      257
## 16         18260    21791        881                 95      381     2038
## 17          6580     6250        413                 93       60      533
## 18           372      357         35                  0       NA       37
## 19         19953    19980       1082                 85      388     1702
## 20          1491     1398        120                  0        2      149
## 21          3014     2465        204                 38       26      183
## 22            17        6          2                  0       NA        0
## 23           282      272         24                  0       NA       32
## 24          5140     4914        323                 77       52      453
## 25          6122     5665        390                115       65      485
## 26           152      132         15                  0       NA       13
## 27          6646     6216        414                 67       56      559
## 28           453      478         42                  0       NA       47
## 29         11553    11516        620                 83      153      959
## 30           837      836         77                  1       NA       75
## 31          1669     1566        104                  0        1      166
## 32         19687    19537       1128                 86      410     1655
## 33         18881    19550        940                 99      368     1741
## 34          1565     1745        126                  0        0      188
## 35          4708     4730        282                 73       34      477
## 36           340      307         27                  0       NA       34
## 37         12688    12827        674                 72      218     1122
## 38          1227     1103         92                  3       NA      108
## 39           730      696         52                  1       NA       60
## 40          9821    10257        508                 69      135      863
## 41          5458     5857        327                 62       55      543
## 42           560      647         44                  1       NA       69
## 43         10633    10776        587                 74      125      830
## 44           825      994         48                  0       NA       91
## 45         12999    12138        736                 84      210      943
## 46           780      682         68                  0       NA       56
## 47           421      433         34                  0       NA       51
## 48          5838     5693        359                 82       58      557
## 49          5609     6022        314                 81       65      594
## 50           504      511         46                  0       NA       54
## 51         13761    13053        776                 71      211     1027
## 52           851      745         60                  0       NA       62
## 53          3824     3632        249                 48       43      340
## 54           169      133         19                  0       NA       10
## 55           691      631         52                  0       NA       67
## 56          6618     6490        407                 84       58      589
## 57          4612     4092        300                 77       18      390
## 58           133      110         13                  0       NA        6
## 59          4135     4166        243                 84       28      429
## 60           231      187         24                  0       NA       15
## 61          7373     6690        391                 NA      163      477
## 62           580      552         33                 NA       NA       45
## 63           286      247         17                 NA       NA       21
## 64          4883     4625        245                 NA       83      300
## 65          5347     4762        274                 NA       88      307
## 66           253      177         16                 NA       NA       12
## 67          5345     4704        297                 NA       95      318
## 68           177      143         10                 NA       NA       12
## 69          1957     1426        115                 NA       47       78
## 70             6        3          1                 NA       NA        0
## 71            84       91          7                 NA        4        6
## 72          1333     1458         81                 NA       30      160
## 73           475      414         30                 NA        0       33
## 74           519      376         55                 NA       10       41
## 75            12        8          1                 NA        0        0
## 76           184       76         17                 NA        2        3
## 77           380      353         42                 NA       11       35
## 78             7        2          1                 NA        0        0
## 79            37       17          2                 NA        0        1
## 80           177       91          8                 NA        0        4
## 81          1405     1474        107                 NA       48      156
## 82            79       74         12                 NA        8        9
## 83          2007     1510        154                 NA       67      147
## 84            42       32          3                 NA        1        4
## 85           144       86         14                 NA        3        7
## 86           713      541         46                 NA       23       44
## 87            36       31          4                 NA       NA        2
## 88          2013     2057        104                 NA       53      161
## 89            62       32          6                 NA       NA        2
## 90           679      374         44                 NA       16       20
## 91           617      470         34                 NA       18       28
## 92           213      197         10                 NA       11       25
## 93             3        1          0                 NA        1        0
## 94           175      133         12                 NA        2       10
## 95           112      104         13                  0       NA        7
## 96          2151     2209        136                 33       NA      207
## 97          1619     1345        120                 30       NA      116
## 98           793      939         38                 13       NA       96
## 99           145      179         10                  1       NA       21
## 100         1867     1285        100                 NA       52       84
## 101          201      173          5                 NA        0       15
## 102           28       28          2                 NA        0        4
## 103           25       23          4                 NA        0        4
## 104          768      724         37                 NA        5       73
## 105           33       22          1                  0       NA        3
##     lastSeasonId losses overtimeLosses penaltyMinutes pointPctg points
## 1             NA   1211            169          44773    0.5306   3176
## 2             NA    120              0           4266    0.0039      2
## 3             NA   1587            166          57792    0.5133   3889
## 4             NA    137              0           5648    0.0131      8
## 5             NA   2716            153          86129    0.5127   6727
## 6             NA    266              0           8181    0.0000      0
## 7             NA    218              0           9104    0.0045      4
## 8             NA   1452            183          76208    0.5752   4798
## 9             NA   1734            151          66221    0.5203   4340
## 10            NA    182              0           6106    0.0153     12
## 11            NA   2403            191          88570    0.5632   7464
## 12            NA    337              0          10607    0.0296     40
## 13            NA   1564            167          60671    0.5305   4186
## 14            NA    132              0           4692    0.0000      0
## 15            NA    320              0          12130    0.0000      0
## 16            NA   2302            175          87484    0.5863   7958
## 17            NA    940            169          29684    0.5071   2226
## 18            NA     79              0           2102    0.0000      0
## 19            NA   2696            174          92331    0.5136   6693
## 20            NA    283              0           8550    0.0110     12
## 21      20102011    437             78          13727    0.4473    807
## 22      20102011      4              0            115    0.0000      0
## 23            NA     54              0           1310    0.0714     16
## 24            NA    725            174          19429    0.5281   1914
## 25            NA    870            208          29171    0.5045   2128
## 26            NA     33              0            775    0.0000      0
## 27            NA    947            150          31086    0.5087   2232
## 28            NA     74              0           2413    0.0636     22
## 29            NA   1467            163          57455    0.5321   3866
## 30            NA    156              1           5152    0.0644     38
## 31            NA    275              0           8855    0.0000      0
## 32            NA   2761            173          92285    0.5039   6611
## 33            NA   2446            183          84403    0.5354   6738
## 34            NA    293              0           8735    0.0000      0
## 35            NA    656            163          19933    0.5566   1927
## 36            NA     67              0           1377    0.0744     18
## 37            NA   1645            167          65608    0.5340   4457
## 38            NA    221              1           7730    0.0396     32
## 39            NA    118              0           5118    0.0045      2
## 40            NA   1236            150          55423    0.5414   3415
## 41            NA    728            142          25410    0.5705   2257
## 42            NA     94              1           2970    0.0411     18
## 43            NA   1337            167          55008    0.5204   3367
## 44            NA    112              0           5756    0.0000      0
## 45            NA   1746            159          66856    0.4877   3848
## 46            NA    135              0           4755    0.0000      0
## 47            NA     73              0           2302    0.0000      0
## 48            NA    834            180          30579    0.5369   2267
## 49            NA    738            162          28050    0.5820   2455
## 50            NA     95              0           2619    0.0350     14
## 51            NA   1829            165          65875    0.4910   4097
## 52            NA    144              0           4399    0.0000      0
## 53      20132014    546            105          19860    0.5254   1429
## 54      20132014     35              0            837    0.0000      0
## 55            NA    122              0           3034    0.0664     32
## 56            NA    920            163          31739    0.5330   2424
## 57            NA    698            159          19835    0.4936   1548
## 58            NA     26              0            387    0.1951     16
## 59            NA    599            154          17134    0.5511   1727
## 60            NA     54              0            882    0.0119      2
## 61      19921993    970             NA          36310    0.4486   1850
## 62      19921993     86             NA           3468    0.0000      0
## 63      19941995     45             NA           2434    0.0000      0
## 64      19941995    599             NA          27013    0.4594   1154
## 65      19951996    660             NA          27371    0.4425   1184
## 66      19951996     43             NA           1546    0.0000      0
## 67      19961997    709             NA          29656    0.4384   1245
## 68      19961997     31             NA           1273    0.0000      0
## 69      19811982    281             NA           6216    0.3250    312
## 70      19811982      2             NA             25    0.0000      0
## 71      19331934     17             NA            497    0.0000      0
## 72      19331934    221             NA           5667    0.5341    579
## 73      19241925     78             NA           1042    0.3770     95
## 74      19291930    122             NA           1620    0.3703    157
## 75      19291930      2             NA             20    0.0000      0
## 76      19301931     36             NA            503    0.1364     12
## 77      19291930     87             NA           1718    0.4347    153
## 78      19291930      2             NA             24    0.0000      0
## 79      19171918      5             NA             27    0.1667      2
## 80      19191920     20             NA            119    0.1667      8
## 81      19371938    260             NA           7330    0.5088    633
## 82      19371938     21             NA            535    0.0000      0
## 83      19401941    373             NA           6348    0.4090    602
## 84      19401941     11             NA            155    0.0000      0
## 85      19341935     31             NA            408    0.2917     28
## 86      19691970    118             NA           2443    0.3850    174
## 87      19691970      8             NA            152    0.0000      0
## 88      19791980    260             NA           7608    0.5063    644
## 89      19791980     15             NA            461    0.0000      0
## 90      19751976    110             NA           1726    0.2406     77
## 91      19771978     87             NA           2021    0.3750    120
## 92      19311932     41             NA            858    0.4620     85
## 93      19311932      1             NA             12    0.0000      0
## 94      19411942     29             NA            425    0.3646     35
## 95            NA     23              0            330    0.2821     22
## 96            NA    292             75           7621    0.5601    839
## 97            NA    262             60           4715    0.4552    488
## 98            NA     94             24           2117    0.6357    370
## 99            NA     24              0            622    0.2667     32
## 100     19751976    283             NA           5594    0.3231    305
## 101     19181919     22             NA            696    0.4500     36
## 102     19181919      3             NA            176    0.0000      0
## 103     19261927      6             NA            123    0.0000      0
## 104     19261927    111             NA           2339    0.4957    228
## 105           NA      5              0             80        NA     NA
##     roadLosses roadOvertimeLosses roadTies roadWins shootoutLosses shootoutWins
## 1          686                 84      123      604             84           78
## 2           67                  0       NA       63              0            0
## 3          909                 82      177      725             70           86
## 4           85                  2       NA       75              0            0
## 5         1573                 77      360     1269             68           79
## 6          162                  0        7      107              0            0
## 7          121                  0       NA       96              0            0
## 8          868                 90      264      863             92           53
## 9         1051                 91      178      765             54           83
## 10          97                  1       NA       96              0            0
## 11        1443                 99      415     1356             82           68
## 12         186                  2        3      138              0            0
## 13         925                 83      212      752             74           81
## 14          78                  0       NA       51              0            0
## 15         187                  0        5      185              0            0
## 16        1421                 80      456     1435             66           69
## 17         527                 76       55      438             79           58
## 18          44                  0       NA       35              0            0
## 19        1614                 89      385     1171             77           59
## 20         163                  1        1      110              0            0
## 21         233                 40       19      159             29           37
## 22           2                  0       NA        0              0            0
## 23          30                  2       NA       26              0            0
## 24         402                 97       34      374             61           50
## 25         480                 93       77      404             97           71
## 26          18                  0       NA        8              0            0
## 27         533                 83       56      426             59           68
## 28          32                  0       NA       52              0            1
## 29         847                 80      150      741             71           68
## 30          79                  2       NA       63              1            0
## 31         171                  1        4      102              0            0
## 32        1633                 87      404     1157             70           75
## 33        1506                 84      405     1150             76           71
## 34         167                  0        0      137              0            0
## 35         374                 90       26      375             70           74
## 36          40                  2       NA       20              0            0
## 37         971                 95      214      807             69           74
## 38         129                  0       NA       74              1            0
## 39          66                  1       NA       43              0            0
## 40         728                 81      136      634             65           52
## 41         401                 80       46      464             42           73
## 42          50                  0       NA       55              0            0
## 43         750                 93      137      639             69           75
## 44          64                  0       NA       69              0            0
## 45        1010                 75      181      706             76           72
## 46          67                  0       NA       55              0            0
## 47          39                  0       NA       38              0            0
## 48         475                 98       49      433             78           71
## 49         424                 81       60      490             62           73
## 50          49                  2       NA       51              0            1
## 51        1053                 94      213      727             71           69
## 52          84                  0       NA       49              0            0
## 53         297                 57       51      275             49           52
## 54          16                  0       NA       12              0            0
## 55          70                  1       NA       52              0            0
## 56         513                 79       63      481             67           76
## 57         398                 82       15      288             72           71
## 58          13                  3       NA        9              0            0
## 59         356                 70       27      330             70           71
## 60          30                  0       NA       15              0            0
## 61         579                 NA      171      281              0            0
## 62          53                 NA       NA       35              0            0
## 63          28                 NA       NA       14              0            0
## 64         354                 NA       77      197              0            0
## 65         386                 NA       84      199              0            0
## 66          27                 NA       NA        7              0            0
## 67         412                 NA       82      216              0            0
## 68          21                 NA       NA        6              0            0
## 69         166                 NA       39       35              0            0
## 70           1                 NA       NA        0              0            0
## 71          10                 NA        2       12              0            0
## 72         140                 NA       33       98              0            0
## 73          48                 NA        1       14              0            0
## 74          67                 NA       13       26              0            0
## 75           1                 NA        1        1              0            0
## 76          19                 NA        2        1              0            0
## 77          45                 NA       14       29              0            0
## 78           1                 NA        0        0              0            0
## 79           3                 NA        0        0              0            0
## 80          12                 NA        0        0              0            0
## 81         153                 NA       43      115              0            0
## 82           9                 NA        1       11              0            0
## 83         219                 NA       57       92              0            0
## 84           8                 NA        0        2              0            0
## 85          17                 NA        3        4              0            0
## 86          72                 NA       19       22              0            0
## 87           4                 NA       NA        1              0            0
## 88         156                 NA       55      107              0            0
## 89           9                 NA       NA        0              0            0
## 90          66                 NA        7        7              0            0
## 91          53                 NA        8       19              0            0
## 92          31                 NA        6        9              0            0
## 93           1                 NA        0        0              0            0
## 94          17                 NA        1        6              0            0
## 95          10                  0       NA        9              0            0
## 96         156                 42       NA      175             30           36
## 97         142                 30       NA       98             22           26
## 98          56                 11       NA       77              9           11
## 99          14                  2       NA       15              0            0
## 100        183                 NA       21       32              0            0
## 101         17                 NA        0        3              0            0
## 102          1                 NA        0        0              0            0
## 103          2                 NA        1        0              0            0
## 104         74                 NA        5       36              0            0
## 105          4                  0       NA        1              0            0
##     shutouts teamId                teamName ties triCode wins
## 1        196      1       New Jersey Devils  219     NJD 1394
## 2         25      1       New Jersey Devils   NA     NJD  137
## 3        177      2      New York Islanders  347     NYI 1688
## 4         12      2      New York Islanders   NA     NYI  169
## 5        408      3        New York Rangers  808     NYR 2883
## 6         44      3        New York Rangers    8     NYR  244
## 7         33      4     Philadelphia Flyers   NA     PHI  231
## 8        248      4     Philadelphia Flyers  457     PHI 2079
## 9        189      5     Pittsburgh Penguins  383     PIT 1903
## 10        30      5     Pittsburgh Penguins   NA     PIT  209
## 11       506      6           Boston Bruins  791     BOS 3241
## 12        49      6           Boston Bruins    6     BOS  332
## 13       194      7          Buffalo Sabres  409     BUF 1805
## 14        18      7          Buffalo Sabres   NA     BUF  124
## 15        68      8      Montréal Canadiens    8     MTL  442
## 16       543      8      Montréal Canadiens  837     MTL 3473
## 17       137      9         Ottawa Senators  115     OTT  971
## 18        12      9         Ottawa Senators   NA     OTT   72
## 19       422     10     Toronto Maple Leafs  773     TOR 2873
## 20        50     10     Toronto Maple Leafs    3     TOR  259
## 21        41     11       Atlanta Thrashers   45     ATL  342
## 22         0     11       Atlanta Thrashers   NA     ATL    0
## 23        11     12     Carolina Hurricanes   NA     CAR   58
## 24        99     12     Carolina Hurricanes   86     CAR  827
## 25       115     13        Florida Panthers  142     FLA  889
## 26         3     13        Florida Panthers   NA     FLA   21
## 27       124     14     Tampa Bay Lightning  112     TBL  985
## 28        14     14     Tampa Bay Lightning   NA     TBL   99
## 29       178     15     Washington Capitals  303     WSH 1700
## 30        19     15     Washington Capitals   NA     WSH  138
## 31        32     16      Chicago Blackhawks    5     CHI  268
## 32       439     16      Chicago Blackhawks  814     CHI 2812
## 33       423     17       Detroit Red Wings  773     DET 2891
## 34        66     17       Detroit Red Wings    0     DET  325
## 35       134     18     Nashville Predators   60     NSH  852
## 36         6     18     Nashville Predators   NA     NSH   54
## 37       252     19         St. Louis Blues  432     STL 1929
## 38        21     19         St. Louis Blues   NA     STL  182
## 39        14     20          Calgary Flames   NA     CGY  103
## 40       144     20          Calgary Flames  271     CGY 1497
## 41       124     21      Colorado Avalanche  101     COL 1007
## 42        23     21      Colorado Avalanche   NA     COL  124
## 43       122     22         Edmonton Oilers  262     EDM 1469
## 44        14     22         Edmonton Oilers   NA     EDM  160
## 45       169     23       Vancouver Canucks  391     VAN 1649
## 46        14     23       Vancouver Canucks   NA     VAN  111
## 47        16     24           Anaheim Ducks   NA     ANA   89
## 48       137     24           Anaheim Ducks  107     ANA  990
## 49       150     25            Dallas Stars  125     DAL 1084
## 50        15     25            Dallas Stars   NA     DAL  105
## 51       234     26       Los Angeles Kings  424     LAK 1754
## 52        14     26       Los Angeles Kings   NA     LAK  111
## 53       105     27         Phoenix Coyotes   94     PHX  615
## 54         4     27         Phoenix Coyotes   NA     PHX   22
## 55        15     28         San Jose Sharks   NA     SJS  119
## 56       157     28         San Jose Sharks  121     SJS 1070
## 57       105     29   Columbus Blue Jackets   33     CBJ  678
## 58         2     29   Columbus Blue Jackets   NA     CBJ   15
## 59       113     30          Minnesota Wild   55     MIN  759
## 60         7     30          Minnesota Wild   NA     MIN   30
## 61        70     31   Minnesota North Stars  334     MNS  758
## 62         9     31   Minnesota North Stars   NA     MNS   80
## 63         1     32        Quebec Nordiques   NA     QUE   35
## 64        28     32        Quebec Nordiques  160     QUE  497
## 65        37     33    Winnipeg Jets (1979)  172     WIN  506
## 66         0     33    Winnipeg Jets (1979)   NA     WIN   19
## 67        50     34        Hartford Whalers  177     HFD  534
## 68         1     34        Hartford Whalers   NA     HFD   18
## 69         3     35        Colorado Rockies   86     CLR  113
## 70         0     35        Colorado Rockies   NA     CLR    0
## 71         9     36  Ottawa Senators (1917)    6     SEN   18
## 72        91     36  Ottawa Senators (1917)   63     SEN  258
## 73         8     37         Hamilton Tigers    1     HAM   47
## 74        33     38      Pittsburgh Pirates   23     PIR   67
## 75         0     38      Pittsburgh Pirates    1     PIR    1
## 76         1     39    Philadelphia Quakers    4     QUA    4
## 77        29     40         Detroit Cougars   25     DCG   64
## 78         0     40         Detroit Cougars    0     DCG    0
## 79         0     41      Montreal Wanderers    0     MWN    1
## 80         0     42         Quebec Bulldogs    0     QBD    4
## 81        75     43        Montreal Maroons   91     MMR  271
## 82        13     43        Montreal Maroons    9     MMR   20
## 83        84     44      New York Americans  124     NYA  239
## 84         3     44      New York Americans    1     NYA    6
## 85         3     45        St. Louis Eagles    6     SLE   11
## 86        11     46           Oakland Seals   42     OAK   66
## 87         0     46           Oakland Seals   NA     OAK    3
## 88        34     47          Atlanta Flames  108     AFM  268
## 89         0     47          Atlanta Flames   NA     AFM    2
## 90         0     48      Kansas City Scouts   23     KCS   27
## 91         6     49        Cleveland Barons   26     CLE   47
## 92        12     50         Detroit Falcons   17     DFL   34
## 93         0     50         Detroit Falcons    1     DFL    0
## 94         1     51      Brooklyn Americans    3     BRK   16
## 95         3     52           Winnipeg Jets   NA     WPG   16
## 96        46     52           Winnipeg Jets   NA     WPG  382
## 97        28     53         Arizona Coyotes   NA     ARI  214
## 98        27     54    Vegas Golden Knights   NA     VGK  173
## 99        10     54    Vegas Golden Knights   NA     VGK   36
## 100       15     56 California Golden Seals   73     CGS  116
## 101        0     57          Toronto Arenas    0     TAN   18
## 102        0     57          Toronto Arenas    0     TAN    4
## 103        2     58    Toronto St. Patricks    1     TSP    4
## 104        9     58    Toronto St. Patricks   10     TSP  109
## 105        0     53         Arizona Coyotes   NA     ARI    4
franchise_team_totals2 <- GET("https://records.nhl.com/site/api/franchise-team-totals?cayenneExp=franchiseId=26")
franchise_team_totals2.text <- content(franchise_team_totals2, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_team_totals2.json <- fromJSON(franchise_team_totals2.text, flatten=TRUE)
franchise_team_totals2.json$data
##   id activeFranchise firstSeasonId franchiseId gameTypeId gamesPlayed
## 1 24               1      19971998          26          2        1812
## 2 67               1      19791980          26          2        1420
## 3 23               1      19971998          26          3         112
## 4 68               1      19791980          26          3          49
##   goalsAgainst goalsFor homeLosses homeOvertimeLosses homeTies homeWins
## 1         5140     4914        323                 77       52      453
## 2         5345     4704        297                 NA       95      318
## 3          282      272         24                  0       NA       32
## 4          177      143         10                 NA       NA       12
##   lastSeasonId losses overtimeLosses penaltyMinutes pointPctg points roadLosses
## 1           NA    725            174          19429    0.5281   1914        402
## 2     19961997    709             NA          29656    0.4384   1245        412
## 3           NA     54              0           1310    0.0714     16         30
## 4     19961997     31             NA           1273    0.0000      0         21
##   roadOvertimeLosses roadTies roadWins shootoutLosses shootoutWins shutouts
## 1                 97       34      374             61           50       99
## 2                 NA       82      216              0            0       50
## 3                  2       NA       26              0            0       11
## 4                 NA       NA        6              0            0        1
##   teamId            teamName ties triCode wins
## 1     12 Carolina Hurricanes   86     CAR  827
## 2     34    Hartford Whalers  177     HFD  534
## 3     12 Carolina Hurricanes   NA     CAR   58
## 4     34    Hartford Whalers   NA     HFD   18
franchise_season <- GET("https://records.nhl.com/site/api/franchise-season-records?cayenneExp=franchiseId=26")
franchise_season.text <- content(franchise_season, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_season.json <- fromJSON(franchise_season.text, flatten=TRUE)
franchise_season.json$data
##   id fewestGoals fewestGoalsAgainst fewestGoalsAgainstSeasons
## 1 12         171                202              1998-99 (82)
##   fewestGoalsSeasons fewestLosses fewestLossesSeasons fewestPoints
## 1       2002-03 (82)           22        2005-06 (82)           45
##   fewestPointsSeasons fewestTies fewestTiesSeasons fewestWins fewestWinsSeasons
## 1        1982-83 (80)          4      1985-86 (80)         19      1982-83 (80)
##   franchiseId       franchiseName homeLossStreak       homeLossStreakDates
## 1          26 Carolina Hurricanes              8 Mar 14 2013 - Apr 09 2013
##   homePointStreak      homePointStreakDates homeWinStreak
## 1              15 Dec 13 2005 - Jan 28 2006            12
##          homeWinStreakDates homeWinlessStreak    homeWinlessStreakDates
## 1 Feb 20 2009 - Apr 07 2009                13 Jan 15 1985 - Mar 10 1985
##   lossStreak           lossStreakDates mostGameGoals
## 1          9 Feb 19 1983 - Mar 08 1983            11
##                                                                                                       mostGameGoalsDates
## 1 Feb 12 1984 - EDM 0 @ HFD 11, Oct 19 1985 - MTL 6 @ HFD 11, Jan 17 1986 - QUE 6 @ HFD 11, Mar 15 1986 - CHI 4 @ HFD 11
##   mostGoals mostGoalsAgainst mostGoalsAgainstSeasons mostGoalsSeasons
## 1       332              403            1982-83 (80)     1985-86 (80)
##   mostLosses mostLossesSeasons mostPenaltyMinutes mostPenaltyMinutesSeasons
## 1         54      1982-83 (80)               2354              1992-93 (84)
##   mostPoints mostPointsSeasons mostShutouts mostShutoutsSeasons mostTies
## 1        112      2005-06 (82)            8        1998-99 (82)       19
##   mostTiesSeasons mostWins mostWinsSeasons pointStreak
## 1    1979-80 (80)       52    2005-06 (82)          13
##                                       pointStreakDates roadLossStreak
## 1 Mar 09 2017 - Mar 30 2017, Apr 15 2021 - May 06 2021             13
##         roadLossStreakDates roadPointStreak      roadPointStreakDates
## 1 Dec 18 1982 - Feb 05 1983              12 Feb 23 2004 - Mar 27 2004
##   roadWinStreak                                   roadWinStreakDates
## 1             6 Nov 10 1990 - Dec 07 1990, May 09 2002 - Jun 04 2002
##   roadWinlessStreak                               roadWinlessStreakDates
## 1                15 Nov 11 1979 - Jan 09 1980, Jan 07 2003 - Mar 02 2003
##   winStreak
## 1         9
##                                                                    winStreakDates
## 1 Oct 22 2005 - Nov 11 2005, Dec 31 2005 - Jan 19 2006, Mar 18 2009 - Apr 07 2009
##   winlessStreak                                   winlessStreakDates
## 1            14 Jan 04 1992 - Feb 09 1992, Oct 10 2009 - Nov 13 2009
franchise_goalie <- GET("https://records.nhl.com/site/api/franchise-goalie-records?cayenneExp=franchiseId=26")
franchise_goalie.text <- content(franchise_goalie, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_goalie.json <- fromJSON(franchise_goalie.text, flatten=TRUE)
franchise_goalie.json$data
##      id activePlayer firstName franchiseId       franchiseName gameTypeId
## 1   336        FALSE       Tom          26 Carolina Hurricanes          2
## 2   363        FALSE   Richard          26 Carolina Hurricanes          2
## 3   369        FALSE      Sean          26 Carolina Hurricanes          2
## 4   411        FALSE      Mark          26 Carolina Hurricanes          2
## 5   425        FALSE      John          26 Carolina Hurricanes          2
## 6   430        FALSE     Mario          26 Carolina Hurricanes          2
## 7   470        FALSE       Pat          26 Carolina Hurricanes          2
## 8   490        FALSE      Mike          26 Carolina Hurricanes          2
## 9   508        FALSE      Kirk          26 Carolina Hurricanes          2
## 10  525        FALSE      Greg          26 Carolina Hurricanes          2
## 11  662        FALSE     Frank          26 Carolina Hurricanes          2
## 12  676        FALSE      Jeff          26 Carolina Hurricanes          2
## 13  698        FALSE     Peter          26 Carolina Hurricanes          2
## 14  704        FALSE        Al          26 Carolina Hurricanes          2
## 15  713        FALSE        Ed          26 Carolina Hurricanes          2
## 16  743        FALSE      Mike          26 Carolina Hurricanes          2
## 17  758        FALSE     Steve          26 Carolina Hurricanes          2
## 18  310        FALSE    Arturs          26 Carolina Hurricanes          2
## 19  789        FALSE    Trevor          26 Carolina Hurricanes          2
## 20  868        FALSE     Tyler          26 Carolina Hurricanes          2
## 21  872        FALSE     Kevin          26 Carolina Hurricanes          2
## 22  879        FALSE     Jamie          26 Carolina Hurricanes          2
## 23  881        FALSE      Eric          26 Carolina Hurricanes          2
## 24  907        FALSE      John          26 Carolina Hurricanes          2
## 25  920        FALSE     Brian          26 Carolina Hurricanes          2
## 26  993        FALSE   Michael          26 Carolina Hurricanes          2
## 27 1001        FALSE       Dan          26 Carolina Hurricanes          2
## 28 1034        FALSE    Martin          26 Carolina Hurricanes          2
## 29 1262         TRUE    Curtis          26 Carolina Hurricanes          2
## 30  277        FALSE       Cam          26 Carolina Hurricanes          2
## 31 1083         TRUE     Anton          26 Carolina Hurricanes          2
## 32 1287         TRUE     James          26 Carolina Hurricanes          2
## 33 1121        FALSE     Scott          26 Carolina Hurricanes          2
## 34 1158        FALSE     Eddie          26 Carolina Hurricanes          2
## 35 1259         TRUE      Petr          26 Carolina Hurricanes          2
## 36 1299         TRUE     Anton          26 Carolina Hurricanes          2
## 37 1178        FALSE     Jorge          26 Carolina Hurricanes          2
## 38 1297        FALSE     David          26 Carolina Hurricanes          2
##    gamesPlayed     lastName losses
## 1           34     Barrasso     12
## 2            6      Brodeur      2
## 3          256        Burke    120
## 4            3  Fitzpatrick      2
## 5          122      Garrett     57
## 6           23     Gosselin     13
## 7            5    Jablonski      4
## 8          252         Liut    111
## 9            8       McLean      2
## 10         219       Millen    120
## 11          54  Pietrangelo     27
## 12          37        Reese     17
## 13         178 Sidorkiewicz     79
## 14          30        Smith     10
## 15          19   Staniowski      9
## 16          69       Veisor     37
## 17          94        Weeks     40
## 18         309         Irbe    122
## 19          72         Kidd     31
## 20          12         Moss      6
## 21         119       Weekes     54
## 22          14        Storr      8
## 23           9      Fichaud      5
## 24          45      Grahame     20
## 25          10      Boucher      6
## 26          33     Leighton     14
## 27          19        Ellis      8
## 28          60       Gerber     14
## 29          33   McElhinney     11
## 30         668         Ward    244
## 31          70     Khudobin     31
## 32          47       Reimer     11
## 33          51      Darling     25
## 34          54         Lack     21
## 35          92       Mrazek     32
## 36           3     Forsberg      1
## 37           1        Alves      0
## 38           1        Ayres      0
##                                         mostGoalsAgainstDates
## 1                          2001-12-30, 2001-12-18, 2001-11-29
## 2                                                  1988-03-09
## 3                                                  1992-12-11
## 4                                                  2000-02-15
## 5              1982-01-02, 1980-10-11, 1980-03-08, 1980-02-26
## 6                                      1993-04-10, 1993-03-24
## 7                                                  1998-01-03
## 8                                                  1985-10-23
## 9                                      1998-03-06, 1998-01-06
## 10                                     1983-02-23, 1982-12-06
## 11                                                 1992-10-31
## 12                                                 1994-02-02
## 13                         1991-01-29, 1990-12-29, 1989-02-25
## 14                                                 1980-03-26
## 15                                     1984-01-03, 1983-12-27
## 16                                                 1980-11-23
## 17                                                 1984-12-03
## 18                                                 2002-01-12
## 19                                                 1999-02-13
## 20                                                 2000-10-31
## 21                                                 2003-02-07
## 22                                                 2003-11-21
## 23                                                 1999-11-03
## 24                                                 2007-12-01
## 25                         2012-03-31, 2011-10-29, 2011-10-22
## 26                                                 2009-10-31
## 27                                     2013-04-04, 2013-02-23
## 28             2006-04-08, 2006-04-03, 2005-12-28, 2005-12-26
## 29                                                 2019-03-08
## 30                         2017-01-20, 2007-01-27, 2005-11-12
## 31                                                 2015-04-02
## 32             2021-02-07, 2021-02-04, 2020-02-08, 2019-12-27
## 33                                                 2017-12-19
## 34                                                 2016-10-22
## 35                                                 2020-02-04
## 36                                     2020-02-29, 2020-02-28
## 37 2017-04-09, 2017-04-08, 2017-04-06, 2017-04-04, 2017-04-02
## 38                                                 2020-02-22
##    mostGoalsAgainstOneGame
## 1                        5
## 2                        4
## 3                        9
## 4                        5
## 5                        9
## 6                        6
## 7                        6
## 8                        9
## 9                        4
## 10                      11
## 11                       7
## 12                       9
## 13                       8
## 14                       7
## 15                       7
## 16                      11
## 17                       9
## 18                       7
## 19                       6
## 20                       5
## 21                       7
## 22                       5
## 23                       6
## 24                       8
## 25                       5
## 26                       6
## 27                       5
## 28                       5
## 29                       8
## 30                       7
## 31                       6
## 32                       5
## 33                       8
## 34                       6
## 35                       6
## 36                       3
## 37                       0
## 38                       2
##                                                mostSavesDates mostSavesOneGame
## 1                                                  2001-12-10               40
## 2                                                  1988-04-03               31
## 3                                                  1994-01-01               51
## 4                                                  2000-02-15               40
## 5                                                  1981-02-14               50
## 6                                                  1993-03-22               45
## 7                                                  1997-12-27               26
## 8                                                  1985-12-19               45
## 9                                                  1998-03-06               46
## 10                                                 1982-01-30               52
## 11                                                 1992-03-29               48
## 12                                     1995-01-22, 1994-04-10               38
## 13                                                 1992-01-16               39
## 14                                                 1980-04-01               36
## 15                                                 1984-02-05               38
## 16                                                 1982-11-02               52
## 17                                                 1987-04-05               43
## 18                                                 1999-01-30               44
## 19                                                 1998-03-02               43
## 20                                                 2000-10-14               32
## 21                                                 2003-02-18               43
## 22                                                 2003-10-25               28
## 23                                                 1999-12-23               31
## 24                                                 2006-11-22               44
## 25                                                 2011-12-03               37
## 26                                                 2008-12-07               38
## 27                                     2013-03-19, 2013-01-25               40
## 28                                                 2005-10-24               45
## 29                                                 2018-11-27               48
## 30                                                 2008-10-25               57
## 31                                                 2014-03-18               46
## 32                                                 2019-10-08               47
## 33                                                 2018-03-27               41
## 34                                                 2016-03-17               44
## 35                                                 2019-03-11               38
## 36                                                 2020-02-28               29
## 37 2017-04-09, 2017-04-08, 2017-04-06, 2017-04-04, 2017-04-02                0
## 38                                                 2020-02-22                8
##                                         mostShotsAgainstDates
## 1                                                  2001-12-10
## 2                                                  1988-04-03
## 3                                      1996-01-27, 1994-01-01
## 4                                                  2000-02-15
## 5                                                  1981-02-14
## 6                                                  1993-03-22
## 7                                                  1997-12-27
## 8                                                  1987-03-10
## 9                                                  1998-03-06
## 10                                                 1982-01-30
## 11                                                 1992-03-29
## 12                                                 1995-01-22
## 13                                                 1992-01-16
## 14                                                 1980-04-01
## 15                                                 1984-02-05
## 16                                                 1982-11-02
## 17                                                 1987-04-05
## 18                                                 1999-01-30
## 19                                                 1998-03-02
## 20                                                 2000-10-14
## 21                                                 2003-02-18
## 22                                                 2003-10-25
## 23                                                 1999-12-23
## 24                                                 2006-11-22
## 25                                                 2011-12-03
## 26                                                 2009-02-05
## 27                                                 2013-03-19
## 28                                                 2005-10-24
## 29                                                 2018-11-27
## 30                                                 2008-10-25
## 31                                                 2014-03-18
## 32                                                 2019-10-08
## 33                                                 2018-03-27
## 34                                                 2016-03-17
## 35                                                 2018-12-13
## 36                                                 2020-02-28
## 37 2017-04-09, 2017-04-08, 2017-04-06, 2017-04-04, 2017-04-02
## 38                                                 2020-02-22
##    mostShotsAgainstOneGame mostShutoutsOneSeason
## 1                       43                     2
## 2                       34                     0
## 3                       54                     4
## 4                       45                     0
## 5                       57                     0
## 6                       50                     0
## 7                       27                     0
## 8                       48                     4
## 9                       50                     0
## 10                      54                     2
## 11                      50                     0
## 12                      40                     1
## 13                      43                     4
## 14                      41                     2
## 15                      41                     0
## 16                      59                     1
## 17                      49                     2
## 18                      45                     6
## 19                      44                     3
## 20                      34                     0
## 21                      47                     6
## 22                      32                     0
## 23                      35                     1
## 24                      47                     0
## 25                      40                     0
## 26                      40                     0
## 27                      43                     1
## 28                      47                     3
## 29                      49                     2
## 30                      60                     6
## 31                      47                     1
## 32                      50                     3
## 33                      45                     0
## 34                      48                     2
## 35                      39                     4
## 36                      32                     0
## 37                       0                     0
## 38                      10                     0
##                     mostShutoutsSeasonIds mostWinsOneSeason mostWinsSeasonIds
## 1                                20012002                13          20012002
## 2                                19871988                 4          19871988
## 3                      19951996, 19961997                28          19951996
## 4                                19992000                 0          19992000
## 5            19791980, 19801981, 19811982                16          19791980
## 6                      19921993, 19931994                 5          19921993
## 7                                19971998                 1          19971998
## 8                                19861987                31          19861987
## 9                                19971998                 4          19971998
## 10                               19831984                21          19831984
## 11           19911992, 19921993, 19931994                 5          19931994
## 12                     19931994, 19951996                 5          19931994
## 13                               19881989                22          19881989
## 14                               19791980                11          19791980
## 15                     19831984, 19841985                 6          19831984
## 16                     19801981, 19821983                 6          19801981
## 17                               19841985                13          19851986
## 18                     19981999, 20002001                37          20002001
## 19                               19971998                21          19971998
## 20                               20002001                 1          20002001
## 21                               20032004                23          20032004
## 22                               20032004                 0          20032004
## 23                               19992000                 3          19992000
## 24                     20062007, 20072008                10          20062007
## 25                               20112012                 1          20112012
## 26 20072008, 20082009, 20092010, 20162017                 6          20082009
## 27                               20122013                 6          20122013
## 28                               20052006                38          20052006
## 29                               20182019                20          20182019
## 30                               20082009                39          20082009
## 31                     20132014, 20142015                19          20132014
## 32                               20192020                15          20202021
## 33                     20172018, 20182019                13          20172018
## 34                               20152016                12          20152016
## 35                               20182019                23          20182019
## 36                               20192020                 1          20192020
## 37                               20162017                 0          20162017
## 38                               20192020                 1          20192020
##    overtimeLosses playerId positionCode rookieGamesPlayed rookieShutouts
## 1              NA  8445275            G                NA             NA
## 2              NA  8445694            G                NA             NA
## 3              NA  8445769            G                NA             NA
## 4              NA  8446829            G                NA             NA
## 5              NA  8447066            G                NA             NA
## 6              NA  8447303            G                NA             NA
## 7              NA  8448207            G                NA             NA
## 8              NA  8448865            G                NA             NA
## 9              NA  8449474            G                NA             NA
## 10             NA  8449627            G                NA             NA
## 11             NA  8450390            G                NA             NA
## 12             NA  8450743            G                NA             NA
## 13             NA  8451369            G                44              4
## 14             NA  8451474            G                NA             NA
## 15             NA  8451655            G                NA             NA
## 16             NA  8452205            G                NA             NA
## 17             NA  8452355            G                NA             NA
## 18             NA  8456692            G                NA             NA
## 19             NA  8456830            G                NA             NA
## 20             NA  8459451            G                NA             NA
## 21             NA  8459463            G                NA             NA
## 22             NA  8460497            G                NA             NA
## 23             NA  8460506            G                NA             NA
## 24              3  8460715            G                NA             NA
## 25              1  8462052            G                NA             NA
## 26              2  8468038            G                NA             NA
## 27              2  8468540            G                NA             NA
## 28              6  8469675            G                NA             NA
## 29              2  8470147            G                NA             NA
## 30             84  8470320            G                28              0
## 31              7  8471418            G                NA             NA
## 32              4  8473503            G                NA             NA
## 33              9  8474152            G                NA             NA
## 34              9  8475663            G                NA             NA
## 35              8  8475852            G                NA             NA
## 36              0  8476341            G                NA             NA
## 37              0  8479115            G                NA             NA
## 38              0  8479188            G                NA             NA
##    rookieWins seasons shutouts ties wins
## 1          NA       1        2    5   13
## 2          NA       1        0    0    4
## 3          NA       6       10   24  100
## 4          NA       1        0    0    0
## 5          NA       3        0   27   36
## 6          NA       2        0    1    5
## 7          NA       1        0    0    1
## 8          NA       6       13   17  115
## 9          NA       1        0    0    4
## 10         NA       4        4   33   62
## 11         NA       3        0    3   12
## 12         NA       3        2    4    9
## 13         22       5        8   24   71
## 14         NA       1        2    8   11
## 15         NA       2        0    1    6
## 16         NA       4        2    9   17
## 17         NA       4        4    6   41
## 18         NA       6       20   44  130
## 19         NA       2        5    9   28
## 20         NA       1        0    0    1
## 21         NA       3       11   20   39
## 22         NA       1        0    2    0
## 23         NA       1        1    1    3
## 24         NA       2        0   NA   15
## 25         NA       1        0   NA    1
## 26         NA       4        0   NA   10
## 27         NA       1        1   NA    6
## 28         NA       1        3   NA   38
## 29         NA       1        2    0   20
## 30         14      13       27    0  318
## 31         NA       2        2   NA   27
## 32         NA       2        3    0   29
## 33         NA       2        0    0   15
## 34         NA       2        3   NA   20
## 35         NA       3       10    0   50
## 36         NA       1        0    0    1
## 37         NA       1        0   NA    0
## 38         NA       1        0    0    1
franchise_skater <- GET("https://records.nhl.com/site/api/franchise-skater-records?cayenneExp=franchiseId=26")
franchise_skater.text <- content(franchise_skater, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_skater.json <- fromJSON(franchise_skater.text, flatten=TRUE)
franchise_skater.json$data
##        id activePlayer assists    firstName franchiseId       franchiseName
## 1   17239        FALSE       0          Jim          26 Carolina Hurricanes
## 2   17418        FALSE       1         Mike          26 Carolina Hurricanes
## 3   17543        FALSE       0         Fred          26 Carolina Hurricanes
## 4   17703        FALSE       2       Jergus          26 Carolina Hurricanes
## 5   17728        FALSE       0         Reid          26 Carolina Hurricanes
## 6   18169        FALSE       0          Bob          26 Carolina Hurricanes
## 7   18233        FALSE       0      Charlie          26 Carolina Hurricanes
## 8   18288        FALSE       0         Greg          26 Carolina Hurricanes
## 9   18328        FALSE       1         Jeff          26 Carolina Hurricanes
## 10  18799        FALSE       1        Shane          26 Carolina Hurricanes
## 11  18953        FALSE       0         Yves          26 Carolina Hurricanes
## 12  19034        FALSE       1          Jim          26 Carolina Hurricanes
## 13  19349        FALSE       0        Steve          26 Carolina Hurricanes
## 14  20327        FALSE       1        Randy          26 Carolina Hurricanes
## 15  21075        FALSE       0          Bob          26 Carolina Hurricanes
## 16  21324        FALSE       0         Rick          26 Carolina Hurricanes
## 17  21556        FALSE       0          Pat          26 Carolina Hurricanes
## 18  21851        FALSE       4        David          26 Carolina Hurricanes
## 19  22073        FALSE       0        Kevin          26 Carolina Hurricanes
## 20  22105        FALSE       6          Tim          26 Carolina Hurricanes
## 21  22302        FALSE       0         Marc          26 Carolina Hurricanes
## 22  22675        FALSE       1      Charles          26 Carolina Hurricanes
## 23  23333        FALSE       3          Rob          26 Carolina Hurricanes
## 24  23416        FALSE       0       Girard          26 Carolina Hurricanes
## 25  23447        FALSE       3          Bob          26 Carolina Hurricanes
## 26  23595        FALSE       0        Glenn          26 Carolina Hurricanes
## 27  23869        FALSE       0         John          26 Carolina Hurricanes
## 28  23926        FALSE       0          Lee          26 Carolina Hurricanes
## 29  24037        FALSE       0         Jeff          26 Carolina Hurricanes
## 30  24078        FALSE       0          Jim          26 Carolina Hurricanes
## 31  24317        FALSE       9         Mark          26 Carolina Hurricanes
## 32  24538        FALSE       0         Jean          26 Carolina Hurricanes
## 33  24579        FALSE       0      Maynard          26 Carolina Hurricanes
## 34  24672        FALSE       0         Gord          26 Carolina Hurricanes
## 35  24856        FALSE       1       Robert          26 Carolina Hurricanes
## 36  24863        FALSE       8         John          26 Carolina Hurricanes
## 37  25060        FALSE       0          Jim          26 Carolina Hurricanes
## 38  25114        FALSE       0        Allan          26 Carolina Hurricanes
## 39  25201        FALSE       0         Mike          26 Carolina Hurricanes
## 40  25253        FALSE       3        James          26 Carolina Hurricanes
## 41  25487        FALSE       5          Bob          26 Carolina Hurricanes
## 42  25509        FALSE       0        Brian          26 Carolina Hurricanes
## 43  25528        FALSE       3       Enrico          26 Carolina Hurricanes
## 44  25975        FALSE       5        Scott          26 Carolina Hurricanes
## 45  26007        FALSE       4         Todd          26 Carolina Hurricanes
## 46  26390        FALSE       0        Sandy          26 Carolina Hurricanes
## 47  26572        FALSE       0        Barry          26 Carolina Hurricanes
## 48  26783        FALSE       0        Jason          26 Carolina Hurricanes
## 49  26800        FALSE       4        Kevin          26 Carolina Hurricanes
## 50  26916        FALSE      15       Steven          26 Carolina Hurricanes
## 51  27372        FALSE       2      Michael          26 Carolina Hurricanes
## 52  27483        FALSE       1        Chris          26 Carolina Hurricanes
## 53  27517        FALSE       0         Mike          26 Carolina Hurricanes
## 54  27958        FALSE       2        Byron          26 Carolina Hurricanes
## 55  28066        FALSE       0         Josh          26 Carolina Hurricanes
## 56  28197        FALSE       0         Joey          26 Carolina Hurricanes
## 57  28278        FALSE       0         Greg          26 Carolina Hurricanes
## 58  28297        FALSE       9        Tomas          26 Carolina Hurricanes
## 59  28432        FALSE       0        Nikos          26 Carolina Hurricanes
## 60  28452        FALSE       1       Harold          26 Carolina Hurricanes
## 61  28486        FALSE       4        Josef          26 Carolina Hurricanes
## 62  28652        FALSE       0         Greg          26 Carolina Hurricanes
## 63  29062        FALSE       2      Michael          26 Carolina Hurricanes
## 64  29096        FALSE       0        Brett          26 Carolina Hurricanes
## 65  29102        FALSE       0         Adam          26 Carolina Hurricanes
## 66  29617        FALSE       1        David          26 Carolina Hurricanes
## 67  29630        FALSE       4         Mike          26 Carolina Hurricanes
## 68  29737        FALSE       2        Tomas          26 Carolina Hurricanes
## 69  29746        FALSE       1      Brandon          26 Carolina Hurricanes
## 70  29923        FALSE       4   Marc-Andre          26 Carolina Hurricanes
## 71  30007        FALSE       0       Steven          26 Carolina Hurricanes
## 72  30024        FALSE       6          Tim          26 Carolina Hurricanes
## 73  30124        FALSE       0         Joey          26 Carolina Hurricanes
## 74  30128        FALSE       0        James          26 Carolina Hurricanes
## 75  30160        FALSE      10          Ian          26 Carolina Hurricanes
## 76  30350        FALSE       1        Danny          26 Carolina Hurricanes
## 77  30428        FALSE       0    Alexandre          26 Carolina Hurricanes
## 78  30884        FALSE       1        Jakub          26 Carolina Hurricanes
## 79  31068        FALSE       0   Marc-Andre          26 Carolina Hurricanes
## 80  31131        FALSE       0      Nicolas          26 Carolina Hurricanes
## 81  31268        FALSE       0        Oskar          26 Carolina Hurricanes
## 82  31371        FALSE       3         Ryan          26 Carolina Hurricanes
## 83  31507        FALSE       0        Aaron          26 Carolina Hurricanes
## 84  31677        FALSE       0         Jack          26 Carolina Hurricanes
## 85  31771        FALSE       0        Jared          26 Carolina Hurricanes
## 86  32078        FALSE       0       Rasmus          26 Carolina Hurricanes
## 87  32162        FALSE       2        Danny          26 Carolina Hurricanes
## 88  32257        FALSE       0       Justin          26 Carolina Hurricanes
## 89  32296        FALSE       0        Brody          26 Carolina Hurricanes
## 90  32414        FALSE       0       Keegan          26 Carolina Hurricanes
## 91  32447        FALSE       2           Ty          26 Carolina Hurricanes
## 92  32568         TRUE       6         Matt          26 Carolina Hurricanes
## 93  32574        FALSE       1       Jeremy          26 Carolina Hurricanes
## 94  32641         TRUE       0       Martin          26 Carolina Hurricanes
## 95  32647        FALSE       0      Brendan          26 Carolina Hurricanes
## 96  32650         TRUE       0       Trevor          26 Carolina Hurricanes
## 97  32810        FALSE       2       Sergey          26 Carolina Hurricanes
## 98  32893         TRUE       3       Roland          26 Carolina Hurricanes
## 99  32965         TRUE       0      Nicolas          26 Carolina Hurricanes
## 100 32990        FALSE       0        Jakub          26 Carolina Hurricanes
## 101 33013         TRUE       0       Andrew          26 Carolina Hurricanes
## 102 33049         TRUE       0        Janne          26 Carolina Hurricanes
## 103 33742         TRUE       1       Julien          26 Carolina Hurricanes
## 104 33751        FALSE       0        Brian          26 Carolina Hurricanes
## 105 33784         TRUE       1         Eetu          26 Carolina Hurricanes
## 106 34094         TRUE       0      Sheldon          26 Carolina Hurricanes
## 107 34099         TRUE       0         Drew          26 Carolina Hurricanes
## 108 34233         TRUE       0       Joakim          26 Carolina Hurricanes
## 109 34269         TRUE       0         Joey          26 Carolina Hurricanes
## 110 17325        FALSE       9         Russ          26 Carolina Hurricanes
## 111 17781        FALSE      14         Norm          26 Carolina Hurricanes
## 112 19197        FALSE      19       Gerald          26 Carolina Hurricanes
## 113 20121        FALSE       9         Bill          26 Carolina Hurricanes
## 114 20179        FALSE       1       Dallas          26 Carolina Hurricanes
## 115 20348        FALSE       4          Don          26 Carolina Hurricanes
## 116 20352        FALSE       3         Paul          26 Carolina Hurricanes
## 117 20499        FALSE       4  Christopher          26 Carolina Hurricanes
## 118 20926        FALSE      10        Brian          26 Carolina Hurricanes
## 119 21171        FALSE       1        Brian          26 Carolina Hurricanes
## 120 21329        FALSE       3         Mike          26 Carolina Hurricanes
## 121 21396        FALSE      18           Ed          26 Carolina Hurricanes
## 122 21438        FALSE      18        Marty          26 Carolina Hurricanes
## 123 22725        FALSE       1        Randy          26 Carolina Hurricanes
## 124 22732        FALSE      22         Norm          26 Carolina Hurricanes
## 125 23180        FALSE       2         Paul          26 Carolina Hurricanes
## 126 23431        FALSE      11         Jack          26 Carolina Hurricanes
## 127 24095        FALSE       4        Allen          26 Carolina Hurricanes
## 128 24636        FALSE       4         Neil          26 Carolina Hurricanes
## 129 24676        FALSE      11         Paul          26 Carolina Hurricanes
## 130 24790        FALSE      10       Stuart          26 Carolina Hurricanes
## 131 24981        FALSE       1        Chris          26 Carolina Hurricanes
## 132 25371        FALSE       1      Richard          26 Carolina Hurricanes
## 133 25542        FALSE       2       Edward          26 Carolina Hurricanes
## 134 25565        FALSE      10       Joseph          26 Carolina Hurricanes
## 135 25688        FALSE       0         Todd          26 Carolina Hurricanes
## 136 26908        FALSE       0        Anson          26 Carolina Hurricanes
## 137 27422        FALSE       4        Steve          26 Carolina Hurricanes
## 138 27558        FALSE       2        Chris          26 Carolina Hurricanes
## 139 28203        FALSE       4        Craig          26 Carolina Hurricanes
## 140 28682        FALSE      18        Bryan          26 Carolina Hurricanes
## 141 28910        FALSE       2        Allan          26 Carolina Hurricanes
## 142 29143        FALSE       0         Brad          26 Carolina Hurricanes
## 143 29184        FALSE       1       Damian          26 Carolina Hurricanes
## 144 29285        FALSE       3        Brian          26 Carolina Hurricanes
## 145 29612        FALSE       1         Wade          26 Carolina Hurricanes
## 146 30049        FALSE       1       Dwight          26 Carolina Hurricanes
## 147 30389        FALSE       0      Patrick          26 Carolina Hurricanes
## 148 30543        FALSE       0          Joe          26 Carolina Hurricanes
## 149 30567        FALSE       2         Troy          26 Carolina Hurricanes
## 150 30601        FALSE      12        Bryan          26 Carolina Hurricanes
## 151 30696        FALSE       0        Bryan          26 Carolina Hurricanes
## 152 30738        FALSE       2        Casey          26 Carolina Hurricanes
## 153 31118        FALSE       4        Brett          26 Carolina Hurricanes
## 154 31404        FALSE       1          Tim          26 Carolina Hurricanes
## 155 32089        FALSE       5       Marcus          26 Carolina Hurricanes
## 156 32841         TRUE       1      Patrick          26 Carolina Hurricanes
## 157 33346         TRUE      13       Calvin          26 Carolina Hurricanes
## 158 33400         TRUE       3        Clark          26 Carolina Hurricanes
## 159 33445         TRUE      11         Jake          26 Carolina Hurricanes
## 160 17266        FALSE       3        Steve          26 Carolina Hurricanes
## 161 17788        FALSE       4         Dave          26 Carolina Hurricanes
## 162 18215        FALSE       8          Tim          26 Carolina Hurricanes
## 163 18330        FALSE       6         Jack          26 Carolina Hurricanes
## 164 18850        FALSE      10        Kelly          26 Carolina Hurricanes
## 165 19743        FALSE      16         Glen          26 Carolina Hurricanes
## 166 20040        FALSE       3          Dan          26 Carolina Hurricanes
## 167 20377        FALSE       5        Larry          26 Carolina Hurricanes
## 168 21048        FALSE       1       Archie          26 Carolina Hurricanes
## 169 21616        FALSE       5        Bobby          26 Carolina Hurricanes
## 170 22674        FALSE       5       Gilles          26 Carolina Hurricanes
## 171 24058        FALSE       3         Mark          26 Carolina Hurricanes
## 172 24099        FALSE       2        Barry          26 Carolina Hurricanes
## 173 24198        FALSE       3         Marc          26 Carolina Hurricanes
## 174 24641        FALSE       1      Timothy          26 Carolina Hurricanes
## 175 24651        FALSE       0       Daniel          26 Carolina Hurricanes
## 176 25285        FALSE       3        Wally          26 Carolina Hurricanes
## 177 26989        FALSE       3       Darren          26 Carolina Hurricanes
## 178 27595        FALSE       1         Hnat          26 Carolina Hurricanes
## 179 28116        FALSE       0          Dan          26 Carolina Hurricanes
## 180 28962        FALSE       7        Bruno          26 Carolina Hurricanes
## 181 29123        FALSE       4      Michael          26 Carolina Hurricanes
## 182 29831        FALSE       8       Andrew          26 Carolina Hurricanes
## 183 30771        FALSE      10        Brett          26 Carolina Hurricanes
## 184 31101        FALSE       6        Derek          26 Carolina Hurricanes
## 185 31221        FALSE       0          Jon          26 Carolina Hurricanes
## 186 31362        FALSE       4        Bobby          26 Carolina Hurricanes
## 187 31415        FALSE       2        Kevin          26 Carolina Hurricanes
## 188 31599        FALSE      16        Brett          26 Carolina Hurricanes
## 189 31650        FALSE       7       Jerome          26 Carolina Hurricanes
## 190 31804        FALSE       4       Michal          26 Carolina Hurricanes
## 191 32422        FALSE       8         Klas          26 Carolina Hurricanes
## 192 34091         TRUE       1          Max          26 Carolina Hurricanes
## 193 34096         TRUE       6       Steven          26 Carolina Hurricanes
## 194 34211         TRUE       1         Jani          26 Carolina Hurricanes
## 195 17967        FALSE       3         Bill          26 Carolina Hurricanes
## 196 18240        FALSE      25          Dan          26 Carolina Hurricanes
## 197 20048        FALSE      12         Mark          26 Carolina Hurricanes
## 198 20421        FALSE      15    Alexander          26 Carolina Hurricanes
## 199 20597        FALSE       6          Stu          26 Carolina Hurricanes
## 200 20687        FALSE      11        Kevin          26 Carolina Hurricanes
## 201 20738        FALSE      15           Al          26 Carolina Hurricanes
## 202 21401        FALSE      14         Doug          26 Carolina Hurricanes
## 203 21849        FALSE      20        Grant          26 Carolina Hurricanes
## 204 22127        FALSE       3        Derek          26 Carolina Hurricanes
## 205 22152        FALSE      31         Scot          26 Carolina Hurricanes
## 206 22167        FALSE      21        Steve          26 Carolina Hurricanes
## 207 22208        FALSE      26    Frantisek          26 Carolina Hurricanes
## 208 22287        FALSE      14        Andre          26 Carolina Hurricanes
## 209 22294        FALSE      43        Randy          26 Carolina Hurricanes
## 210 22509        FALSE       2        Jamie          26 Carolina Hurricanes
## 211 22942        FALSE      11          Don          26 Carolina Hurricanes
## 212 23003        FALSE       7        Bryan          26 Carolina Hurricanes
## 213 23404        FALSE      12         Brad          26 Carolina Hurricanes
## 214 24134        FALSE       5       Michel          26 Carolina Hurricanes
## 215 24175        FALSE       4       Ronald          26 Carolina Hurricanes
## 216 24335        FALSE      47         Mark          26 Carolina Hurricanes
## 217 24905        FALSE       5        Steve          26 Carolina Hurricanes
## 218 25560        FALSE       6        Scott          26 Carolina Hurricanes
## 219 25602        FALSE      11          Ted          26 Carolina Hurricanes
## 220 26780        FALSE       8        Kevin          26 Carolina Hurricanes
## 221 27233        FALSE      19        Nolan          26 Carolina Hurricanes
## 222 27431        FALSE      20         Oleg          26 Carolina Hurricanes
## 223 28444        FALSE       0         Brad          26 Carolina Hurricanes
## 224 28708        FALSE       0         Jeff          26 Carolina Hurricanes
## 225 28946        FALSE      14     Jaroslav          26 Carolina Hurricanes
## 226 29109        FALSE      19       Andrew          26 Carolina Hurricanes
## 227 29402        FALSE       2        Tomas          26 Carolina Hurricanes
## 228 31329        FALSE       5      Andreas          26 Carolina Hurricanes
## 229 31761         TRUE       5          Zac          26 Carolina Hurricanes
## 230 31819        FALSE       7       Andrei          26 Carolina Hurricanes
## 231 32760        FALSE       7     Valentin          26 Carolina Hurricanes
## 232 32818        FALSE       3         Josh          26 Carolina Hurricanes
## 233 32833         TRUE      31       Trevor          26 Carolina Hurricanes
## 234 33908         TRUE       8        Brady          26 Carolina Hurricanes
## 235 33936         TRUE       7       Morgan          26 Carolina Hurricanes
## 236 34129         TRUE       4       Cedric          26 Carolina Hurricanes
## 237 18071        FALSE       6        James          26 Carolina Hurricanes
## 238 18998        FALSE      11         Mike          26 Carolina Hurricanes
## 239 19005        FALSE      19         Doug          26 Carolina Hurricanes
## 240 19099        FALSE      12         Jeff          26 Carolina Hurricanes
## 241 20592        FALSE      17         Mark          26 Carolina Hurricanes
## 242 20995        FALSE      14        Kevin          26 Carolina Hurricanes
## 243 22023        FALSE       5          Dan          26 Carolina Hurricanes
## 244 22494        FALSE       5      Stephen          26 Carolina Hurricanes
## 245 22559        FALSE      32       Curtis          26 Carolina Hurricanes
## 246 22611        FALSE      18         Rick          26 Carolina Hurricanes
## 247 22683        FALSE      18       George          26 Carolina Hurricanes
## 248 24114        FALSE      20        Brent          26 Carolina Hurricanes
## 249 24303        FALSE       3         Mark          26 Carolina Hurricanes
## 250 24618        FALSE       8         Dave          26 Carolina Hurricanes
## 251 24626        FALSE      84         Brad          26 Carolina Hurricanes
## 252 25228        FALSE      29       Mickey          26 Carolina Hurricanes
## 253 26168        FALSE       9         Doug          26 Carolina Hurricanes
## 254 26413        FALSE      12         Dave          26 Carolina Hurricanes
## 255 26884        FALSE       3     Stephane          26 Carolina Hurricanes
## 256 26984        FALSE      12         Igor          26 Carolina Hurricanes
## 257 27779        FALSE       5        Radek          26 Carolina Hurricanes
## 258 27986        FALSE      10        Danny          26 Carolina Hurricanes
## 259 28579        FALSE       2       Niklas          26 Carolina Hurricanes
## 260 29482        FALSE      51       Niclas          26 Carolina Hurricanes
## 261 31718        FALSE      17         Zach          26 Carolina Hurricanes
## 262 32500        FALSE      31         Ryan          26 Carolina Hurricanes
## 263 32861         TRUE      19        Haydn          26 Carolina Hurricanes
## 264 33461        FALSE       4         Saku          26 Carolina Hurricanes
## 265 33673         TRUE      28         Jake          26 Carolina Hurricanes
## 266 18339        FALSE       4         Jeff          26 Carolina Hurricanes
## 267 18713        FALSE       4      Lindsay          26 Carolina Hurricanes
## 268 19360        FALSE      24       Richie          26 Carolina Hurricanes
## 269 20064        FALSE      10       Michel          26 Carolina Hurricanes
## 270 22936        FALSE      23       Merlin          26 Carolina Hurricanes
## 271 23498        FALSE      12          Jim          26 Carolina Hurricanes
## 272 24117        FALSE       5       Jorgen          26 Carolina Hurricanes
## 273 27011        FALSE      34        Chris          26 Carolina Hurricanes
## 274 27220        FALSE       7        Marty          26 Carolina Hurricanes
## 275 28854        FALSE      13        Tommy          26 Carolina Hurricanes
## 276 28883        FALSE       7     Jaroslav          26 Carolina Hurricanes
## 277 29006        FALSE       4        Pavel          26 Carolina Hurricanes
## 278 29347        FALSE      43          Ron          26 Carolina Hurricanes
## 279 29464        FALSE      24         Ryan          26 Carolina Hurricanes
## 280 29675        FALSE      93          Tim          26 Carolina Hurricanes
## 281 29817        FALSE      45       Dennis          26 Carolina Hurricanes
## 282 29935        FALSE      10        Keith          26 Carolina Hurricanes
## 283 17237        FALSE      11       Thommy          26 Carolina Hurricanes
## 284 19183        FALSE      18          Rob          26 Carolina Hurricanes
## 285 22010        FALSE       9           Ed          26 Carolina Hurricanes
## 286 22291        FALSE      25       Pierre          26 Carolina Hurricanes
## 287 22530        FALSE       8      Jocelyn          26 Carolina Hurricanes
## 288 22767        FALSE      16         Rick          26 Carolina Hurricanes
## 289 24148        FALSE       5        Randy          26 Carolina Hurricanes
## 290 24260        FALSE      70         Joel          26 Carolina Hurricanes
## 291 24520        FALSE       2          Jim          26 Carolina Hurricanes
## 292 25324        FALSE       0         Dave          26 Carolina Hurricanes
## 293 25423        FALSE      37         Mike          26 Carolina Hurricanes
## 294 25880        FALSE      24         Kent          26 Carolina Hurricanes
## 295 26246        FALSE      51        Aaron          26 Carolina Hurricanes
## 296 26429        FALSE      13          Jim          26 Carolina Hurricanes
## 297 26627        FALSE      11       Robert          26 Carolina Hurricanes
## 298 27193        FALSE      60        Marek          26 Carolina Hurricanes
## 299 28238        FALSE       2        Jesse          26 Carolina Hurricanes
## 300 29136        FALSE      73    Frantisek          26 Carolina Hurricanes
## 301 29523        FALSE      36 John-Michael          26 Carolina Hurricanes
## 302 30341        FALSE      12      Patrick          26 Carolina Hurricanes
## 303 31601        FALSE      18      Drayson          26 Carolina Hurricanes
## 304 33485         TRUE       5         Greg          26 Carolina Hurricanes
## 305 34007         TRUE      13       Jesper          26 Carolina Hurricanes
## 306 18008        FALSE      17         Marc          26 Carolina Hurricanes
## 307 18314        FALSE      41         Jeff          26 Carolina Hurricanes
## 308 18769        FALSE      46        Steve          26 Carolina Hurricanes
## 309 19362        FALSE      15         Norm          26 Carolina Hurricanes
## 310 19777        FALSE       5         Paul          26 Carolina Hurricanes
## 311 23244        FALSE      10          Tom          26 Carolina Hurricanes
## 312 23655        FALSE       9         Mike          26 Carolina Hurricanes
## 313 25267        FALSE      30         Eric          26 Carolina Hurricanes
## 314 25701        FALSE      82         Bret          26 Carolina Hurricanes
## 315 28694        FALSE       6        Manny          26 Carolina Hurricanes
## 316 28847        FALSE       8       Alexei          26 Carolina Hurricanes
## 317 29039        FALSE      61        David          26 Carolina Hurricanes
## 318 29080        FALSE      41         Mike          26 Carolina Hurricanes
## 319 29731        FALSE      25          Jay          26 Carolina Hurricanes
## 320 30057        FALSE     116         Joni          26 Carolina Hurricanes
## 321 31559        FALSE      12         Brad          26 Carolina Hurricanes
## 322 32593         TRUE      27      Phillip          26 Carolina Hurricanes
## 323 32778         TRUE     103        Brett          26 Carolina Hurricanes
## 324 33682         TRUE      13         Joel          26 Carolina Hurricanes
## 325 18929        FALSE      61      Sylvain          26 Carolina Hurricanes
## 326 21907        FALSE      24       Bernie          26 Carolina Hurricanes
## 327 22671        FALSE      20         Dave          26 Carolina Hurricanes
## 328 23415        FALSE      10         Mike          26 Carolina Hurricanes
## 329 23423        FALSE      13         Mike          26 Carolina Hurricanes
## 330 24066        FALSE      20        James          26 Carolina Hurricanes
## 331 24403        FALSE      39       Gordie          26 Carolina Hurricanes
## 332 25004        FALSE      22         Mike          26 Carolina Hurricanes
## 333 25297        FALSE     176         Glen          26 Carolina Hurricanes
## 334 28216        FALSE      12         Eric          26 Carolina Hurricanes
## 335 28624        FALSE      16          Tom          26 Carolina Hurricanes
## 336 30191        FALSE      51      Patrick          26 Carolina Hurricanes
## 337 31333        FALSE      56        Jamie          26 Carolina Hurricanes
## 338 32652         TRUE     134       Jaccob          26 Carolina Hurricanes
## 339 33666         TRUE      23         Ryan          26 Carolina Hurricanes
## 340 18414        FALSE     106         Adam          26 Carolina Hurricanes
## 341 18681        FALSE      10        Jimmy          26 Carolina Hurricanes
## 342 19038        FALSE      36        Randy          26 Carolina Hurricanes
## 343 19794        FALSE      10         Mike          26 Carolina Hurricanes
## 344 21826        FALSE      29         Doug          26 Carolina Hurricanes
## 345 23832        FALSE      48         Dana          26 Carolina Hurricanes
## 346 24512        FALSE     144          Ulf          26 Carolina Hurricanes
## 347 25293        FALSE      19        Blake          26 Carolina Hurricanes
## 348 27854        FALSE      15          Jan          26 Carolina Hurricanes
## 349 28286        FALSE      15       Trevor          26 Carolina Hurricanes
## 350 29752        FALSE      47          Jay          26 Carolina Hurricanes
## 351 30234        FALSE      15         Jeff          26 Carolina Hurricanes
## 352 30328        FALSE      11      Anthony          26 Carolina Hurricanes
## 353 31294        FALSE       3       Viktor          26 Carolina Hurricanes
## 354 32051        FALSE      29       Andrej          26 Carolina Hurricanes
## 355 17257        FALSE      13         Greg          26 Carolina Hurricanes
## 356 19994        FALSE      11         Nick          26 Carolina Hurricanes
## 357 21615        FALSE      16         Mark          26 Carolina Hurricanes
## 358 22393        FALSE      17        Brian          26 Carolina Hurricanes
## 359 24289        FALSE      80         Paul          26 Carolina Hurricanes
## 360 28257        FALSE      44        Craig          26 Carolina Hurricanes
## 361 31547         TRUE      50        Riley          26 Carolina Hurricanes
## 362 32250         TRUE      24       Joakim          26 Carolina Hurricanes
## 363 32936         TRUE      65         Noah          26 Carolina Hurricanes
## 364 17718        FALSE      17        Wayne          26 Carolina Hurricanes
## 365 18844        FALSE      42         Paul          26 Carolina Hurricanes
## 366 26400        FALSE      55      Michael          26 Carolina Hurricanes
## 367 30634         TRUE      24       Andrew          26 Carolina Hurricanes
## 368 30747         TRUE      50       Andrej          26 Carolina Hurricanes
## 369 30796        FALSE      22         Kris          26 Carolina Hurricanes
## 370 31538        FALSE      14        Chris          26 Carolina Hurricanes
## 371 32904         TRUE      32        Lucas          26 Carolina Hurricanes
## 372 18896        FALSE      15         Yvon          26 Carolina Hurricanes
## 373 19047        FALSE      16         Paul          26 Carolina Hurricanes
## 374 19057        FALSE      24         Tony          26 Carolina Hurricanes
## 375 21783        FALSE      43         Mark          26 Carolina Hurricanes
## 376 24245        FALSE      17        Brian          26 Carolina Hurricanes
## 377 26337        FALSE      51       Sandis          26 Carolina Hurricanes
## 378 29196        FALSE      16        Radim          26 Carolina Hurricanes
## 379 30177        FALSE      15          Tim          26 Carolina Hurricanes
## 380 33677         TRUE      10         Erik          26 Carolina Hurricanes
## 381 17111        FALSE      79       Torrie          26 Carolina Hurricanes
## 382 18689        FALSE      19         Greg          26 Carolina Hurricanes
## 383 22099        FALSE      97         Dave          26 Carolina Hurricanes
## 384 22184        FALSE      60        Chris          26 Carolina Hurricanes
## 385 24452        FALSE      32          Tom          26 Carolina Hurricanes
## 386 25727        FALSE     119         Sean          26 Carolina Hurricanes
## 387 32899         TRUE      33       Warren          26 Carolina Hurricanes
## 388 17723        FALSE     196         Dave          26 Carolina Hurricanes
## 389 19145        FALSE      26         Dave          26 Carolina Hurricanes
## 390 26720        FALSE      52       Andrei          26 Carolina Hurricanes
## 391 28507        FALSE      86          Joe          26 Carolina Hurricanes
## 392 21429        FALSE      26       Gordie          26 Carolina Hurricanes
## 393 24699        FALSE     118        Risto          26 Carolina Hurricanes
## 394 25814        FALSE      30       Andrei          26 Carolina Hurricanes
## 395 27084        FALSE      34        Kevyn          26 Carolina Hurricanes
## 396 32997         TRUE      41        Derek          26 Carolina Hurricanes
## 397 33329         TRUE      30       Jordan          26 Carolina Hurricanes
## 398 17268        FALSE      12          Ray          26 Carolina Hurricanes
## 399 21582        FALSE      28         Jody          26 Carolina Hurricanes
## 400 23836        FALSE      38          Don          26 Carolina Hurricanes
## 401 24705        FALSE      67           Al          26 Carolina Hurricanes
## 402 28358        FALSE      81       Sergei          26 Carolina Hurricanes
## 403 30151        FALSE      38        Anton          26 Carolina Hurricanes
## 404 30490        FALSE      30          Lee          26 Carolina Hurricanes
## 405 31097         TRUE      37       Nathan          26 Carolina Hurricanes
## 406 32644         TRUE      55        Brock          26 Carolina Hurricanes
## 407 33066         TRUE      48       Martin          26 Carolina Hurricanes
## 408 22198        FALSE      10         Nick          26 Carolina Hurricanes
## 409 25055        FALSE     120         Dave          26 Carolina Hurricanes
## 410 25139        FALSE      29       Darren          26 Carolina Hurricanes
## 411 32184         TRUE     173       Justin          26 Carolina Hurricanes
## 412 32785         TRUE     124        Elias          26 Carolina Hurricanes
## 413 33345         TRUE      23      Micheal          26 Carolina Hurricanes
## 414 33912         TRUE      27      Vincent          26 Carolina Hurricanes
## 415 17331        FALSE      60       Mikael          26 Carolina Hurricanes
## 416 18303        FALSE      39          Rob          26 Carolina Hurricanes
## 417 21421        FALSE      32        Garry          26 Carolina Hurricanes
## 418 22214        FALSE      29         Todd          26 Carolina Hurricanes
## 419 24915        FALSE      19       Robert          26 Carolina Hurricanes
## 420 25335        FALSE      46        Carey          26 Carolina Hurricanes
## 421 33356         TRUE      79       Dougie          26 Carolina Hurricanes
## 422 28851        FALSE      78        Josef          26 Carolina Hurricanes
## 423 29946        FALSE      95         Chad          26 Carolina Hurricanes
## 424 22690        FALSE      83         Paul          26 Carolina Hurricanes
## 425 25408        FALSE     121       Zarley          26 Carolina Hurricanes
## 426 26257        FALSE      32      Patrick          26 Carolina Hurricanes
## 427 27862        FALSE      34        Shane          26 Carolina Hurricanes
## 428 31286         TRUE     206       Jordan          26 Carolina Hurricanes
## 429 33504         TRUE      48         Nino          26 Carolina Hurricanes
## 430 21362        FALSE      46        Bobby          26 Carolina Hurricanes
## 431 24350        FALSE      40       Steven          26 Carolina Hurricanes
## 432 26618        FALSE     113         Cory          26 Carolina Hurricanes
## 433 27244        FALSE      60        Scott          26 Carolina Hurricanes
## 434 27632        FALSE      87        Bates          26 Carolina Hurricanes
## 435 31565         TRUE      54      Brandon          26 Carolina Hurricanes
## 436 32462         TRUE     100       Victor          26 Carolina Hurricanes
## 437 18708        FALSE     253       Andrew          26 Carolina Hurricanes
## 438 19706        FALSE     148         Dean          26 Carolina Hurricanes
## 439 22399        FALSE      70         Paul          26 Carolina Hurricanes
## 440 22938        FALSE      83         Greg          26 Carolina Hurricanes
## 441 23667        FALSE      44       Warren          26 Carolina Hurricanes
## 442 25378        FALSE      37        Terry          26 Carolina Hurricanes
## 443 30044        FALSE      64    Alexander          26 Carolina Hurricanes
## 444 20192        FALSE      90       Martin          26 Carolina Hurricanes
## 445 24395        FALSE      87         Gary          26 Carolina Hurricanes
## 446 31248        FALSE      69         Jiri          26 Carolina Hurricanes
## 447 32611         TRUE     181        Teuvo          26 Carolina Hurricanes
## 448 17170        FALSE     147         Mark          26 Carolina Hurricanes
## 449 22201        FALSE     139       Robert          26 Carolina Hurricanes
## 450 23559        FALSE      29         Rick          26 Carolina Hurricanes
## 451 25383        FALSE      89        Scott          26 Carolina Hurricanes
## 452 33331         TRUE      81       Andrei          26 Carolina Hurricanes
## 453 18979        FALSE      72       Murray          26 Carolina Hurricanes
## 454 22419        FALSE      47       Pierre          26 Carolina Hurricanes
## 455 24666        FALSE      35          Ray          26 Carolina Hurricanes
## 456 28130        FALSE     109         Matt          26 Carolina Hurricanes
## 457 19022        FALSE      63         John          26 Carolina Hurricanes
## 458 20184        FALSE      60         Stew          26 Carolina Hurricanes
## 459 29633        FALSE     126        Tuomo          26 Carolina Hurricanes
## 460 23866        FALSE     131          Ray          26 Carolina Hurricanes
## 461 27897        FALSE     203         Sami          26 Carolina Hurricanes
## 462 18229        FALSE      91          Pat          26 Carolina Hurricanes
## 463 19593        FALSE      95       Nelson          26 Carolina Hurricanes
## 464 24913        FALSE      72         Doug          26 Carolina Hurricanes
## 465 24224        FALSE      94        Keith          26 Carolina Hurricanes
## 466 28825        FALSE     195         Erik          26 Carolina Hurricanes
## 467 29838        FALSE     117        Jussi          26 Carolina Hurricanes
## 468 17296        FALSE     117         John          26 Carolina Hurricanes
## 469 18364        FALSE     299          Rod          26 Carolina Hurricanes
## 470 16900        FALSE     793          Ron          26 Carolina Hurricanes
## 471 26308        FALSE     215          Ray          26 Carolina Hurricanes
## 472 19268        FALSE      40        Jordy          26 Carolina Hurricanes
## 473 29394        FALSE     188       Justin          26 Carolina Hurricanes
## 474 21886        FALSE     118         Mark          26 Carolina Hurricanes
## 475 18984        FALSE      59          Bob          26 Carolina Hurricanes
## 476 32223         TRUE     175         Jeff          26 Carolina Hurricanes
## 477 32951         TRUE     175    Sebastian          26 Carolina Hurricanes
## 478 19800        FALSE     194          Ray          26 Carolina Hurricanes
## 479 27437        FALSE     218         Jeff          26 Carolina Hurricanes
## 480 17090        FALSE     126         Mike          26 Carolina Hurricanes
## 481 17156        FALSE     211          Pat          26 Carolina Hurricanes
## 482 24623        FALSE      34      Brendan          26 Carolina Hurricanes
## 483 17018        FALSE     294        Kevin          26 Carolina Hurricanes
## 484 25123        FALSE     150      Sylvain          26 Carolina Hurricanes
## 485 30269         TRUE     453         Eric          26 Carolina Hurricanes
## 486 26036        FALSE     173        Geoff          26 Carolina Hurricanes
## 487 17055        FALSE     158       Blaine          26 Carolina Hurricanes
##     gameTypeId gamesPlayed goals     lastName
## 1            2          16     0        Agnew
## 2            2           5     0   Antonovich
## 3            2           3     0       Arthur
## 4            2          10     0         Baca
## 5            2          12     0       Bailey
## 6            2           1     0        Bodak
## 7            2           1     0    Bourgeois
## 8            2           1     0        Britz
## 9            2           7     0 Brownschidle
## 10           2          22     0       Churla
## 11           2           4     0     Courteau
## 12           2           6     0      Culhane
## 13           2           9     0      Dykstra
## 14           2           2     0       Gilhen
## 15           2           3     0         Hess
## 16           2           6     0      Hodgson
## 17           2           2     0       Hughes
## 18           2          13     0       Jensen
## 19           2           3     0         Kemp
## 20           2          22     0         Kerr
## 21           2           9     0      Laforge
## 22           2           8     0        Luksa
## 23           2          17     0   McClanahan
## 24           2           8     0     McDonald
## 25           2          30     0       McGill
## 26           2           7     0     Merkosky
## 27           2           3     0     Newberry
## 28           2           6     0      Norwood
## 29           2           4     0       Parker
## 30           2           5     0       Pavese
## 31           2          45     0        Reeds
## 32           2           1     0       Savard
## 33           2           7     0     Schurman
## 34           2           8     0      Sherven
## 35           2           4     0   Stephenson
## 36           2          44     0      Stevens
## 37           2           5     0      Thomson
## 38           2           6     0         Tuer
## 39           2           2     0     Vellucci
## 40           2          32     0       Warner
## 41           2          43     0     Boughner
## 42           2           3     0      Chapman
## 43           2          14     0      Ciccone
## 44           2          19     0     Pellerin
## 45           2           8     0     Richards
## 46           2          13     0     McCarthy
## 47           2           2     0      Nieckar
## 48           2           9     0       McBain
## 49           2          15     0        Brown
## 50           2         155     0        Halko
## 51           2          26     0     Rucinski
## 52           2          30     0      Dingman
## 53           2           5     0         Watt
## 54           2          33     0      Ritchie
## 55           2           8     0       Holden
## 56           2           2     0    Tetarenko
## 57           2           1     0       Kuznik
## 58           2          29     0      Kaberle
## 59           2           2     0      Tselios
## 60           2          14     0       Druken
## 61           2          15     0     Melichar
## 62           2           1     0      Koehler
## 63           2          18     0         Ryan
## 64           2           2     0        Lysak
## 65           2           6     0         Hall
## 66           2           2     0         Gove
## 67           2          32     0    Komisarek
## 68           2          43     0        Malec
## 69           2           6     0        Nolan
## 70           2          13     0     Bergeron
## 71           2           6     0     Goertzen
## 72           2          59     0       Conboy
## 73           2           1     0      Mormina
## 74           2           1     0   Wisniewski
## 75           2          39     0        White
## 76           2          10     0     Richmond
## 77           2           9     0       Picard
## 78           2           2     0   Petruzalek
## 79           2           1     0     Gragnani
## 80           2           9     0    Blanchard
## 81           2           1     0        Osala
## 82           2          32     0       Carter
## 83           2           2     0     Palushaj
## 84           2           3     0       Hillen
## 85           2           2     0        Staal
## 86           2           6     0     Rissanen
## 87           2          10     0        Biega
## 88           2           3     0        Shugg
## 89           2          12     0       Sutter
## 90           2           2     0         Lowe
## 91           2           5     0       Rattie
## 92           2          45     0     Tennyson
## 93           2           6     0        Welsh
## 94           2           2     0          Frk
## 95           2           7     0        Woods
## 96           2           4     0      Carrick
## 97           2           4     0   Tolchinsky
## 98           2          10     0      McKeown
## 99           2           7     0          Roy
## 100          2           3     0     Nakladal
## 101          2           2     0   Poturalski
## 102          2          11     0    Kuokkanen
## 103          2           5     0     Gauthier
## 104          2          15     0      Gibbons
## 105          2           8     0  Luostarinen
## 106          2           3     0       Rempal
## 107          2           4     0        Shore
## 108          2           4     0         Ryan
## 109          2           1     0        Keane
## 110          2          82     1     Anderson
## 111          2          74     2       Barnes
## 112          2         135     2       Diduck
## 113          2          26     1      Gardner
## 114          2           4     1        Gaume
## 115          2          34     1       Gillen
## 116          2          33     1       Gillis
## 117          2          33     2    Govedaris
## 118          2          98     2        Glynn
## 119          2          19     1         Hill
## 120          2           9     1      Hoffman
## 121          2         131     1     Hospodar
## 122          2         119     1         Howe
## 123          2           2     1    Macgregor
## 124          2          37     1      MacIver
## 125          2          13     1     Marshall
## 126          2          98     2   McIlhargey
## 127          2          66     1     Pedersen
## 128          2          26     1       Sheehy
## 129          2          66     1        Shmyr
## 130          2          77     2        Smith
## 131          2          19     1      Tancill
## 132          2           7     1        Yates
## 133          2          21     1      Crowley
## 134          2          48     1          Day
## 135          2          28     1      Harkins
## 136          2          10     1       Carter
## 137          2          28     1      Martins
## 138          2          15     1       Murray
## 139          2          58     2    MacDonald
## 140          2         101     1        Allen
## 141          2          25     1       Rourke
## 142          2           1     1         Fast
## 143          2           2     1        Surma
## 144          2          20     1      Pothier
## 145          2          59     2    Brookbank
## 146          2          23     1     Helminen
## 147          2          10     1   O'Sullivan
## 148          2           6     1       Jensen
## 149          2          50     1        Bodie
## 150          2          33     1       Rodney
## 151          2          11     1      Bickell
## 152          2          16     1        Borer
## 153          2          36     1       Sutter
## 154          2          28     1      Wallace
## 155          2          48     1       Kruger
## 156          2          28     1        Brown
## 157          2          74     1      de Haan
## 158          2          25     1       Bishop
## 159          2          44     1         Bean
## 160          2          15     3        Alley
## 161          2          30     2         Barr
## 162          2          66     3     Bothwell
## 163          2          39     3 Brownschidle
## 164          2         111     3        Chase
## 165          2         122     5 Featherstone
## 166          2          13     2      Fridgen
## 167          2          47     2       Giroux
## 168          2          15     2    Henderson
## 169          2           9     2         Hull
## 170          2          21     2       Lupien
## 171          2          29     3     Paterson
## 172          2           5     2     Pederson
## 173          2          51     2       Potvin
## 174          2          12     2       Sheehy
## 175          2          13     2        Shank
## 176          2          34     2         Weir
## 177          2         121     2      Langdon
## 178          2          13     2 Domenichelli
## 179          2          11     2    Lacouture
## 180          2          53     2  St. Jacques
## 181          2          57     3    Zigomanis
## 182          2          62     2      Alberts
## 183          2          72     2       Carson
## 184          2          61     3       Joslin
## 185          2          13     2    Matsumoto
## 186          2          40     2  Sanguinetti
## 187          2          43     2    Westgarth
## 188          2         121     4    Bellemore
## 189          2          46     2       Samson
## 190          2          79     3       Jordan
## 191          2          76     3     Dahlbeck
## 192          2          12     2    McCormick
## 193          2          45     2      Lorentz
## 194          2          15     2     Hakanpaa
## 195          2          24     3      Bennett
## 196          2          59     3  Bourbonnais
## 197          2          80     3        Fusco
## 198          2         115     4     Godynyuk
## 199          2         157     5      Grimson
## 200          2         100     5       Haller
## 201          2          37     3   Hangsleben
## 202          2         142     6        Houda
## 203          2         163     7     Jennings
## 204          2          12     3         King
## 205          2         210     9 Kleinendorst
## 206          2          92     5      Konroyd
## 207          2          94     6       Kucera
## 208          2          29     3      Lacroix
## 209          2         452    12    Ladouceur
## 210          2          19     3        Leach
## 211          2          21     3      Maloney
## 212          2          42     3    Marchment
## 213          2         156     4    McCrimmon
## 214          2          30     4       Picard
## 215          2          26     3        Plumb
## 216          2         142     5       Renaud
## 217          2          23     3  Stoyanovich
## 218          2          66     3      Daniels
## 219          2          50     4        Drury
## 220          2          58     6        Smyth
## 221          2         157     4        Pratt
## 222          2          72     3   Tverdovsky
## 223          2           9     3       Defauw
## 224          2          10     3      Heerema
## 225          2          91     8      Svoboda
## 226          2          77     6   Hutchinson
## 227          2          17     3        Kurka
## 228          2          56     3         Nodl
## 229          2          41     5        Dalpe
## 230          2          20     3    Loktionov
## 231          2          25     4        Zykov
## 232          2          31     3       Jooris
## 233          2         206     7 van Riemsdyk
## 234          2          59     3        Skjei
## 235          2          38     6       Geekie
## 236          2          38     3     Paquette
## 237          2          32     4        Black
## 238          2         102     5     Crombeen
## 239          2          41     4     Crossman
## 240          2         272     8      Daniels
## 241          2          74     5        Greig
## 242          2          57     4      Hatcher
## 243          2          36     4      Keczmer
## 244          2          45     4        Leach
## 245          2         255     8   Leschyshyn
## 246          2          81     4          Ley
## 247          2          30     6         Lyle
## 248          2         118     6     Peterson
## 249          2          20     4       Recchi
## 250          2          51     4      Semenko
## 251          2         212    11         Shaw
## 252          2         143     7       Volcan
## 253          2          23     4       Weight
## 254          2         140     5        Karpa
## 255          2          59     4        Yelle
## 256          2          45     7     Chibirev
## 257          2          60     4       Dvorak
## 258          2          44     4       Markov
## 259          2          43     4     Nordgren
## 260          2         517    18       Wallin
## 261          2         115    11      Boychuk
## 262          2         151     6       Murphy
## 263          2         167     5       Fleury
## 264          2          34     4   Maenalanen
## 265          2          94     4     Gardiner
## 266          2          46     5     Brubaker
## 267          2          27     5       Carson
## 268          2          76     6         Dunn
## 269          2          78     7    Galarneau
## 270          2          75     5   Malinowski
## 271          2         203    13     McKenzie
## 272          2          23     5   Pettersson
## 273          2         124    10      Pronger
## 274          2          66     5       Murray
## 275          2         203     9     Vestlund
## 276          2          34     5       Spacek
## 277          2          26     5       Brendl
## 278          2         300    15      Hainsey
## 279          2         179    16        Bayda
## 280          2         546    14      Gleason
## 281          2         137     6   Seidenberg
## 282          2          53     5       Aucoin
## 283          2          32     6  Abrahamsson
## 284          2          74     6       DiMaio
## 285          2         147     9     Kastelic
## 286          2          56     6      Lacroix
## 287          2          86    13      Lemieux
## 288          2          34     6     MacLeish
## 289          2          34     9       Pierce
## 290          2         457    25  Quenneville
## 291          2          40     6      Sandlak
## 292          2          26     6     Williams
## 293          2         159    10         Zuke
## 294          2         258    16  Manderville
## 295          2         336    16         Ward
## 296          2          74     6        Storm
## 297          2          77     9   Petrovicky
## 298          2         317    17        Malik
## 299          2         150     8    Boulerice
## 300          2         214     9      Kaberle
## 301          2         156    10        Liles
## 302          2          85     7        Eaves
## 303          2         176    15       Bowman
## 304          2          41     6       McKegg
## 305          2          46     6         Fast
## 306          2          79     7     Bergevin
## 307          2          81    10        Brown
## 308          2         112    11     Chiasson
## 309          2          40     7       Dupont
## 310          2          34     7       Fenton
## 311          2          64     9       Martin
## 312          2          38     9       Millar
## 313          2          87     8     Weinrich
## 314          2         369    19      Hedican
## 315          2          69     7     Malhotra
## 316          2          49     7 Ponikarovsky
## 317          2         329    21       Tanabe
## 318          2         195    13    Commodore
## 319          2         224    15    McClement
## 320          2         266    24     Pitkanen
## 321          2         122     9       Malone
## 322          2         147    14  Di Giuseppe
## 323          2         405    24        Pesce
## 324          2          68     7    Edmundson
## 325          2         382    31         Cote
## 326          2          57    12     Johnston
## 327          2          48     8       Lumley
## 328          2          58     8     McDougal
## 329          2          67    11       McEwen
## 330          2          47     8      Patrick
## 331          2         107    10      Roberts
## 332          2         141    15       Tomlak
## 333          2         913    51       Wesley
## 334          2          56     8     Belanger
## 335          2          99     9  Kostopoulos
## 336          2         416    42        Dwyer
## 337          2         206    19       McBain
## 338          2         429    32       Slavin
## 339          2          75    10      Dzingel
## 340          2         626    36         Burt
## 341          2          49    10       Carson
## 342          2         216    39  Cunneyworth
## 343          2          40     9       Fidler
## 344          2         139    17       Jarvis
## 345          2         185    13       Murzyn
## 346          2         463    31   Samuelsson
## 347          2         100     9       Wesley
## 348          2          52     9       Hlavac
## 349          2         136    11     Letowski
## 350          2         317    21     Harrison
## 351          2          58     9     Hamilton
## 352          2          77     9      Stewart
## 353          2          57     9     Stalberg
## 354          2         115    17    Nestrasil
## 355          2          79    10        Adams
## 356          2         116    14        Fotiu
## 357          2          74    14       Hunter
## 358          2          48    12       Lawton
## 359          2         432    49      Ranheim
## 360          2         427    33        Adams
## 361          2         242    31         Nash
## 362          2         228    19    Nordstrom
## 363          2         239    18      Hanifin
## 364          2          41    11       Babych
## 365          2         133    16       Coffey
## 366          2         117    22     Nylander
## 367          2         137    26         Ladd
## 368          2         131    13       Sekera
## 369          2          63    11     Versteeg
## 370          2         138    20        Terry
## 371          2         160    22     Wallmark
## 372          2         114    22    Corriveau
## 373          2          87    12          Cyr
## 374          2          45    15       Currie
## 375          2         341    20     Janssens
## 376          2          65    12        Propp
## 377          2         118    16     Ozolinsh
## 378          2         106    19       Vrbata
## 379          2         109    12        Brent
## 380          2          41    12        Haula
## 381          2         326    36    Robertson
## 382          2          71    13      Carroll
## 383          2         234    31         Keon
## 384          2         241    29  Kotsopoulos
## 385          2         115    23         Rowe
## 386          2         369    38         Hill
## 387          2         200    35      Foegele
## 388          2         349    44       Babych
## 389          2          92    26        Debol
## 390          2         112    24   Nikolishin
## 391          2         260    42        Corvo
## 392          2          80    15         Howe
## 393          2         277    40     Siltanen
## 394          2          94    21    Kovalenko
## 395          2         300    38        Adams
## 396          2         153    28         Ryan
## 397          2         171    21    Martinook
## 398          2          70    17      Allison
## 399          2          98    23         Hull
## 400          2         154    21     Nachbaur
## 401          2         156    26         Sims
## 402          2         249    54     Samsonov
## 403          2         163    24      Babchuk
## 404          2         119    19    Stempniak
## 405          2         206    29        Gerbe
## 406          2         345    51       McGinn
## 407          2         125    31        Necas
## 408          2          85    17      Kypreos
## 409          2         483    75      Tippett
## 410          2          66    19     Turcotte
## 411          2         559    85        Faulk
## 412          2         374    64     Lindholm
## 413          2          71    17      Ferland
## 414          2          54    18     Trocheck
## 415          2         165    35    Andersson
## 416          2          86    34        Brown
## 417          2          80    18       Howatt
## 418          2         130    31      Krygier
## 419          2          62    18     Sullivan
## 420          2         115    37       Wilson
## 421          2         184    42     Hamilton
## 422          2         341    57      Vasicek
## 423          2         508    85       LaRose
## 424          2         373    68    MacDermid
## 425          2         229    44     Zalapski
## 426          2          91    22       Poulin
## 427          2         141    27       Willis
## 428          2         583   121        Staal
## 429          2         159    45 Niederreiter
## 430          2         154    42        Holik
## 431          2         224    44         Rice
## 432          2         191    52     Stillman
## 433          2         213    43       Walker
## 434          2         402    63    Battaglia
## 435          2         286    53       Sutter
## 436          2         339    63         Rask
## 437          2         438    97      Cassels
## 438          2         434    87       Evason
## 439          2         205    49      Lawless
## 440          2         176    45       Malone
## 441          2         207    33       Miller
## 442          2         104    24         Yake
## 443          2         166    41        Semin
## 444          2         348    75      Gelinas
## 445          2         207    57      Roberts
## 446          2         322    76       Tlusty
## 447          2         334    79   Teravainen
## 448          2         213    51         Howe
## 449          2         509   108         Kron
## 450          2          96    31      Meagher
## 451          2         197    49        Young
## 452          2         205    59   Svechnikov
## 453          2         128    49       Craven
## 454          2          83    43     Larouche
## 455          2          84    29     Sheppard
## 456          2         266    72       Cullen
## 457          2         109    39       Cullen
## 458          2         211    57        Gavin
## 459          2         378    90        Ruutu
## 460          2         331    95      Neufeld
## 461          2         520   145      Kapanen
## 462          2         160    47     Boutette
## 463          2         263    67      Emerson
## 464          2         221    57     Sulliman
## 465          2         234    82      Primeau
## 466          2         557   168         Cole
## 467          2         288    68      Jokinen
## 468          2         215    72     Anderson
## 469          2         694   174  Brind'Amour
## 470          2        1186   382      Francis
## 471          2         372   119      Whitney
## 472          2         162    56      Douglas
## 473          2         449   128     Williams
## 474          2         201    85      Johnson
## 475          2         182    64     Crawford
## 476          2         579   204      Skinner
## 477          2         366   145          Aho
## 478          2         442   157      Ferraro
## 479          2         673   198      O'Neill
## 480          2         160    84       Rogers
## 481          2         433   192      Verbeek
## 482          2          76    45     Shanahan
## 483          2         708   250       Dineen
## 484          2         370   178      Turgeon
## 485          2         909   322        Staal
## 486          2         479   196    Sanderson
## 487          2         357   219    Stoughton
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               mostAssistsGameDates
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1992-10-06, 1992-10-08, 1992-10-10, 1992-10-12, 1992-10-14, 1992-10-17, 1992-10-20, 1992-10-22, 1992-10-24, 1992-10-28, 1992-10-31, 1992-11-03, 1992-11-06, 1992-11-07, 1992-11-11, 1992-11-13, 1992-11-14, 1992-11-18, 1992-11-19, 1992-11-21, 1992-11-25, 1992-11-27, 1992-11-28, 1992-12-01, 1992-12-03, 1992-12-05, 1992-12-09, 1992-12-11, 1992-12-12, 1992-12-16, 1992-12-18, 1992-12-19, 1992-12-21, 1992-12-23, 1992-12-26, 1992-12-27, 1992-12-31, 1993-01-02, 1993-01-03, 1993-01-06, 1993-01-09, 1993-01-10, 1993-01-13, 1993-01-15, 1993-01-16, 1993-01-18, 1993-01-21, 1993-01-23, 1993-01-24, 1993-01-27, 1993-01-28, 1993-01-30, 1993-02-03, 1993-02-08, 1993-02-12, 1993-02-13, 1993-02-17, 1993-02-20, 1993-02-21, 1993-02-24, 1993-02-27, 1993-02-28, 1993-03-03, 1993-03-05, 1993-03-06, 1993-03-08, 1993-03-10, 1993-03-13, 1993-03-16, 1993-03-19, 1993-03-22, 1993-03-24, 1993-03-27, 1993-03-28, 1993-03-30, 1993-04-01, 1993-04-03, 1993-04-05, 1993-04-07, 1993-04-10, 1993-04-11, 1993-04-13, 1993-04-14, 1993-04-16
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1979-10-13
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1990-10-27, 1991-02-24
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1982-04-03
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1987-02-01
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1990-03-03
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1983-04-03
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1987-04-04, 1987-04-05
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1984-10-11, 1984-10-13, 1984-10-17, 1984-10-28
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1992-10-14, 1992-10-22, 1992-10-24, 1992-10-28, 1992-11-03, 1992-11-06
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1989-10-08, 1989-10-11, 1989-10-13, 1989-10-14, 1989-10-18, 1989-10-19, 1989-10-21, 1989-10-23, 1989-10-25, 1989-10-26, 1989-10-28, 1989-11-01, 1989-11-03, 1989-11-04, 1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1979-10-19
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1981-12-27
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04, 1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1993-12-29, 1994-03-19, 1994-04-14
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1985-10-10, 1985-10-12, 1985-10-15, 1985-10-17, 1985-10-19, 1985-10-23, 1985-10-24, 1985-10-26, 1985-10-29, 1985-10-30, 1985-11-02, 1985-11-05, 1985-11-07, 1985-11-09, 1985-11-13, 1985-11-16, 1985-11-19, 1985-11-21, 1985-11-23, 1985-11-27, 1985-11-29, 1985-11-30, 1985-12-04, 1985-12-07, 1985-12-11, 1985-12-13, 1985-12-14, 1985-12-16, 1985-12-18, 1985-12-19, 1985-12-21, 1985-12-23, 1985-12-26, 1985-12-28, 1985-12-29, 1985-12-31, 1986-01-02, 1986-01-04, 1986-01-07, 1986-01-10, 1986-01-12, 1986-01-15, 1986-01-17, 1986-01-18, 1986-01-20, 1986-01-23, 1986-01-25, 1986-01-27, 1986-01-29, 1986-02-01, 1986-02-02, 1986-02-06, 1986-02-08, 1986-02-09, 1986-02-11, 1986-02-14, 1986-02-15, 1986-02-18, 1986-02-19, 1986-02-22, 1986-02-23, 1986-02-26, 1986-03-01, 1986-03-02, 1986-03-05, 1986-03-07, 1986-03-08, 1986-03-10, 1986-03-13, 1986-03-15, 1986-03-18, 1986-03-19, 1986-03-22, 1986-03-23, 1986-03-26, 1986-03-29, 1986-04-01, 1986-04-03, 1986-04-05, 1986-04-06
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-10-16, 1991-10-19, 1991-10-23, 1991-10-26, 1991-10-27, 1991-10-30, 1991-11-01, 1991-11-02, 1991-11-06, 1991-11-09, 1991-11-10, 1991-11-12
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1991-03-10, 1991-03-12, 1991-03-14, 1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1987-11-01, 1987-12-19, 1987-12-22, 1988-01-16, 1988-01-19, 1988-01-23, 1988-01-30, 1988-12-23, 1989-01-02
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1979-12-22
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1994-03-30
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1988-10-08, 1988-10-09, 1988-10-12, 1988-10-15, 1988-10-19, 1988-10-22, 1988-10-26, 1988-10-28, 1988-10-29, 1988-11-01, 1988-11-03, 1988-11-05, 1988-11-07, 1988-11-09, 1988-11-10, 1988-11-12, 1988-11-16, 1988-11-18, 1988-11-19, 1988-11-23, 1988-11-26, 1988-11-30, 1988-12-02, 1988-12-03, 1988-12-06, 1988-12-08, 1988-12-10, 1988-12-14, 1988-12-15, 1988-12-17, 1988-12-19, 1988-12-21, 1988-12-23, 1988-12-26, 1988-12-28, 1988-12-30, 1988-12-31, 1989-01-02, 1989-01-04, 1989-01-10, 1989-01-14, 1989-01-16, 1989-01-18, 1989-01-19, 1989-01-21, 1989-01-23, 1989-01-25, 1989-01-27, 1989-01-28, 1989-01-31, 1989-02-03, 1989-02-04, 1989-02-09, 1989-02-11, 1989-02-15, 1989-02-18, 1989-02-19, 1989-02-21, 1989-02-23, 1989-02-25, 1989-02-26, 1989-02-28, 1989-03-02, 1989-03-04, 1989-03-05, 1989-03-08, 1989-03-11, 1989-03-12, 1989-03-14, 1989-03-16, 1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1988-02-23, 1988-02-25, 1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-19, 1979-10-28, 1979-11-18
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2003-11-28, 2003-12-20, 2004-01-15, 2004-01-16, 2004-01-27
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1997-10-03, 1997-10-20, 1997-12-12
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-03-02
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1991-03-31
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2000-03-15, 2000-03-17, 2000-03-18, 2000-03-21, 2000-03-22, 2000-03-26, 2000-03-27, 2000-03-29, 2000-03-31, 2000-04-02, 2000-04-03, 2000-04-08, 2000-04-09
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1993-04-13, 1993-04-14, 1993-04-16
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1995-10-07, 1995-10-11, 1995-10-14, 1995-10-16, 1995-10-20, 1995-10-21, 1995-10-25, 1995-10-27, 1995-10-28, 1995-11-02, 1995-11-04, 1995-11-05, 1995-11-07, 1995-11-11, 1995-11-14, 1995-11-15, 1995-11-18, 1995-11-20, 1995-11-22, 1995-11-24, 1995-11-25, 1995-11-29, 1995-12-01, 1995-12-02, 1995-12-06, 1995-12-09, 1995-12-10, 1995-12-13, 1995-12-15, 1995-12-16, 1995-12-18, 1995-12-20, 1995-12-22, 1995-12-23, 1995-12-28, 1995-12-30, 1995-12-31, 1996-01-03, 1996-01-05, 1996-01-06, 1996-01-09, 1996-01-10, 1996-01-12, 1996-01-16, 1996-01-17, 1996-01-24, 1996-01-25, 1996-01-27, 1996-01-30, 1996-01-31, 1996-02-02, 1996-02-07, 1996-02-09, 1996-02-11, 1996-02-14, 1996-02-17, 1996-02-21, 1996-02-23, 1996-02-25, 1996-02-28, 1996-03-01, 1996-03-02, 1996-03-06, 1996-03-08, 1996-03-09, 1996-03-13, 1996-03-16, 1996-03-18, 1996-03-20, 1996-03-22, 1996-03-23, 1996-03-25, 1996-03-27, 1996-03-30, 1996-04-01, 1996-04-03, 1996-04-04, 1996-04-06, 1996-04-08, 1996-04-11, 1996-04-13, 1996-04-14, 1996-10-05, 1996-10-08, 1996-10-12, 1996-10-17, 1996-10-19, 1996-10-24, 1996-10-26, 1996-10-30, 1996-10-31, 1996-11-02, 1996-11-04, 1996-11-06, 1996-11-08, 1996-11-09, 1996-11-12, 1996-11-14, 1996-11-16, 1996-11-20, 1996-11-22, 1996-11-23, 1996-11-27, 1996-11-29, 1996-11-30, 1996-12-03, 1996-12-05, 1996-12-07, 1996-12-11, 1996-12-12, 1996-12-14, 1996-12-16, 1996-12-17, 1996-12-20, 1996-12-21, 1996-12-26, 1996-12-28, 1996-12-29, 1997-01-01, 1997-01-02, 1997-01-04, 1997-01-06, 1997-01-09, 1997-01-10, 1997-01-12, 1997-01-15, 1997-01-20, 1997-01-22, 1997-01-24, 1997-01-25, 1997-01-30, 1997-01-31, 1997-02-05, 1997-02-06, 1997-02-08, 1997-02-12, 1997-02-13, 1997-02-15, 1997-02-16, 1997-02-19, 1997-02-21, 1997-02-22, 1997-02-26, 1997-02-28, 1997-03-02, 1997-03-05, 1997-03-07, 1997-03-08, 1997-03-12, 1997-03-13, 1997-03-15, 1997-03-16, 1997-03-20, 1997-03-21, 1997-03-25, 1997-03-27, 1997-03-29, 1997-04-02, 1997-04-03, 1997-04-05, 1997-04-07, 1997-04-09, 1997-04-11, 1997-04-13
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1997-02-06
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1999-03-30
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1998-04-18, 1998-12-26
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-10-24
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2002-10-09, 2002-10-11, 2002-10-12, 2002-10-15, 2002-10-17, 2002-10-19, 2002-10-22, 2002-10-23, 2002-10-26, 2002-10-29, 2002-10-30, 2002-11-01, 2002-11-05, 2002-11-07, 2002-11-09, 2002-11-12, 2002-11-15, 2002-11-17, 2002-11-19, 2002-11-21, 2002-11-23, 2002-11-25, 2002-11-27, 2002-11-29, 2002-11-30, 2002-12-03, 2002-12-04, 2002-12-06, 2002-12-07, 2002-12-11, 2002-12-12, 2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2002-12-27, 2002-12-28, 2002-12-31, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1999-11-22, 1999-11-26
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2011-12-06, 2011-12-07
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2002-11-15
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2008-11-04, 2008-11-06, 2008-11-23, 2008-12-04
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2009-02-24, 2009-02-26
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2006-01-31
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-04-13
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2002-12-15, 2002-12-20
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2007-12-22
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-04-02, 2013-04-13, 2013-04-18, 2013-04-25
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2009-10-02, 2009-10-03, 2009-10-06, 2009-10-09, 2009-10-10, 2009-10-14, 2009-10-17, 2009-10-21, 2009-10-23, 2009-10-24, 2009-10-28, 2009-10-31, 2009-11-01, 2009-11-04, 2009-11-06, 2009-11-07, 2009-11-11, 2009-11-13, 2009-11-15, 2009-11-17, 2009-11-19, 2009-11-21, 2009-11-23, 2009-11-25, 2009-11-27, 2009-11-28, 2009-11-30, 2009-12-05, 2009-12-07, 2009-12-09, 2009-12-11, 2009-12-12, 2009-12-16, 2009-12-18, 2009-12-19, 2009-12-21, 2009-12-23, 2009-12-26, 2009-12-28, 2009-12-31, 2010-01-02, 2010-01-07, 2010-01-08, 2010-01-10, 2010-01-12, 2010-01-14, 2010-01-16, 2010-01-18, 2010-01-21, 2010-01-23, 2010-01-24, 2010-01-27, 2010-01-28, 2010-01-30, 2010-02-01, 2010-02-03, 2010-02-05, 2010-02-06, 2010-02-09, 2010-02-11, 2010-02-13, 2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2008-02-23
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2007-10-03, 2007-10-05, 2007-10-06, 2007-10-09, 2007-10-11, 2007-10-13, 2007-10-19, 2007-10-20, 2007-10-22, 2007-10-24, 2007-10-26, 2007-10-27, 2007-10-31, 2007-11-03, 2007-11-05, 2007-11-08, 2007-11-10, 2007-11-12, 2007-11-14, 2007-11-16, 2007-11-17, 2007-11-21, 2007-11-23, 2007-11-24, 2007-11-28, 2007-11-30, 2007-12-01, 2007-12-03, 2007-12-06, 2007-12-08, 2007-12-09, 2007-12-12, 2007-12-14, 2007-12-15, 2007-12-18, 2007-12-20, 2007-12-22, 2007-12-26, 2007-12-28, 2007-12-29, 2007-12-31, 2008-01-02, 2008-01-04, 2008-01-05, 2008-01-08, 2008-01-10, 2008-01-12, 2008-01-15, 2008-01-17, 2008-01-18, 2008-01-21, 2008-01-22, 2008-01-29, 2008-01-31, 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2010-11-19, 2010-11-24, 2010-11-26, 2011-01-09, 2011-01-11, 2011-01-15, 2011-01-24, 2011-02-05, 2011-02-08, 2011-02-13
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2006-01-17
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2009-02-05
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2010-12-04, 2010-12-10, 2010-12-23
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2013-10-04, 2013-10-06, 2013-10-08, 2013-10-10, 2013-10-11, 2013-10-13, 2013-10-15, 2013-10-17, 2013-10-19, 2013-10-24, 2013-10-25, 2013-10-28, 2013-11-01, 2013-11-02, 2013-11-05, 2013-11-07, 2013-11-09, 2013-11-12, 2013-11-15, 2013-11-16, 2013-11-18, 2013-11-21, 2013-11-23, 2013-11-24, 2013-11-27, 2013-11-29, 2013-12-01, 2013-12-03, 2013-12-05, 2013-12-06, 2013-12-09, 2013-12-10, 2013-12-12, 2013-12-14, 2013-12-20, 2013-12-21, 2013-12-23, 2013-12-27, 2013-12-29, 2013-12-31, 2014-01-02, 2014-01-04, 2014-01-05, 2014-01-09, 2014-01-10, 2014-01-13, 2014-01-18, 2014-01-19, 2014-01-22, 2014-01-23, 2014-01-25, 2014-01-27, 2014-01-28, 2014-01-31, 2014-02-04, 2014-02-07, 2014-02-08, 2014-02-25, 2014-02-27, 2014-03-01, 2014-03-02, 2014-03-04, 2014-03-07, 2014-03-08, 2014-03-11, 2014-03-13, 2014-03-15, 2014-03-16, 2014-03-18, 2014-03-21, 2014-03-22, 2014-03-25, 2014-03-27, 2014-03-29, 2014-03-31, 2014-04-01, 2014-04-03, 2014-04-05, 2014-04-08, 2014-04-10, 2014-04-11, 2014-04-13
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-03-21, 2015-03-29
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2017-01-06, 2017-01-21
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-11-27, 2016-11-29, 2017-01-10, 2017-01-14, 2017-03-13, 2017-03-28
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2013-03-07
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 96  2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09, 2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-03-31, 2017-04-08
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2017-11-07
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2018-04-07, 2018-10-26, 2018-10-28, 2018-10-30, 2018-11-02, 2018-11-03, 2018-11-06, 2018-11-08, 2018-11-10, 2018-11-12, 2018-11-17, 2018-11-18, 2018-11-21, 2018-11-23, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-12-14
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-10-15, 2019-10-16, 2019-10-18, 2019-10-24, 2019-10-26, 2019-10-29, 2019-11-01, 2019-11-02, 2019-11-05, 2019-11-07, 2019-11-09, 2019-11-11, 2019-11-14, 2019-11-16, 2019-11-19, 2019-11-21, 2019-11-23, 2019-11-24, 2019-11-27, 2019-11-29, 2019-11-30, 2019-12-03, 2019-12-05, 2019-12-07, 2019-12-10, 2019-12-12, 2019-12-14, 2019-12-17, 2019-12-19, 2019-12-21, 2019-12-23, 2019-12-27, 2019-12-28, 2019-12-31, 2020-01-03, 2020-01-05, 2020-01-07, 2020-01-10, 2020-01-11, 2020-01-13, 2020-01-16, 2020-01-17, 2020-01-19, 2020-01-21, 2020-01-31, 2020-02-02, 2020-02-04, 2020-02-06, 2020-02-08, 2020-02-11, 2020-02-14, 2020-02-16, 2020-02-18, 2020-02-21, 2020-02-22, 2020-02-25, 2020-02-28, 2020-02-29, 2020-03-05, 2020-03-07, 2020-03-08, 2020-03-10
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-11-11
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-01-28, 2021-01-30, 2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-05-10
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-30, 1982-01-03, 1982-02-10, 1982-10-21, 1983-01-09, 1983-01-15, 1983-02-19, 1983-03-06, 1983-03-20
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-01-10, 1981-11-28
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1995-12-15, 1996-12-07, 1997-01-09
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-03-15
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-02-11
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-12-02, 1981-12-26, 1981-12-27, 1982-02-19
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1992-01-28, 1992-02-01, 1992-12-16
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-11-03, 1991-01-02, 1991-01-05, 1991-01-16
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-01-25, 1995-02-11, 1995-02-15, 1995-02-18, 1995-04-04, 1995-04-14, 1995-10-07, 1995-11-29, 1995-12-15, 1996-03-02
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-30
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1983-01-02, 1986-01-17, 1986-01-20
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-10-14, 1982-12-11, 1982-12-23, 1982-12-26, 1982-12-28, 1983-01-11, 1983-01-23, 1983-03-27, 1983-04-03, 1983-10-19, 1983-10-25, 1983-11-12, 1983-11-19, 1983-12-03, 1983-12-27, 1984-01-29, 1984-02-01, 1984-02-05
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-03-03, 1982-03-10
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-11-12
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-12-28, 1988-12-31, 1989-01-23, 1989-01-25, 1989-03-08
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-11-26, 1982-12-14
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-11-26, 1980-12-17, 1981-01-24, 1981-03-14, 1981-03-18, 1981-03-21, 1981-10-29, 1981-11-01, 1981-11-12, 1981-12-29, 1982-03-24
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-11-06, 1992-12-09, 1992-12-19, 1993-01-23
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-02-01, 1988-02-07, 1988-02-15, 1988-03-01
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-11-07, 1982-03-18
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-10-17
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-02
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-11-15
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1994-03-09, 1994-04-07
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-18
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1994-01-29, 1994-02-01, 1994-02-02, 1994-02-04, 1994-02-06, 1994-02-11, 1994-02-12, 1994-02-16, 1994-02-17, 1994-02-19, 1994-02-24, 1994-02-26, 1994-02-27, 1994-03-02, 1994-03-04, 1994-03-05, 1994-03-09, 1994-03-10, 1994-03-12, 1994-03-13, 1994-03-16, 1994-03-17, 1994-03-19, 1994-03-22, 1994-03-25, 1994-03-26, 1994-03-29, 1994-03-30, 1994-04-02, 1994-04-06, 1994-04-07, 1994-04-10, 1994-04-11, 1994-04-14
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2007-02-24, 2007-02-27, 2007-02-28, 2007-03-02, 2007-03-04, 2007-03-09, 2007-03-11, 2007-03-13, 2007-03-15, 2007-03-17, 2007-03-22, 2007-03-24, 2007-03-27, 2007-03-28, 2007-03-30, 2007-04-01, 2007-04-03, 2007-04-06, 2007-04-07
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-12-10, 1996-01-16, 1996-02-23, 1996-12-26
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1997-04-05, 1997-10-07
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2002-03-21, 2002-11-30, 2003-03-06, 2003-03-10
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-10-10
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2004-02-23, 2004-03-25
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-04-04
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2010-03-07, 2010-03-11, 2010-03-23
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-01-18
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-11-02
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-10-07, 2010-10-08, 2010-10-14, 2010-10-17, 2010-10-19, 2010-10-20, 2010-10-23, 2010-10-27, 2010-10-29, 2010-10-30, 2010-11-01, 2010-11-03, 2010-11-05, 2010-11-06, 2010-11-09, 2010-11-11, 2010-11-13, 2010-11-17, 2010-11-19, 2010-11-20
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-12-10, 2011-01-03
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-12-16
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2008-01-04, 2008-01-12
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-10-18, 2011-11-23, 2011-11-27, 2014-01-09
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-04-20
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-11-18
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-03-31
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2018-12-16, 2019-01-03
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2018-12-07, 2018-12-31, 2019-11-30
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-02-15, 2021-03-11
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-03-22, 1980-10-12, 1980-10-15
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-10-28, 1986-11-08, 1986-12-31, 1987-01-04
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-11-23, 1985-11-29, 1985-11-30, 1985-12-11, 1985-12-23, 1986-01-25, 1986-04-05, 1986-04-06
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-03-13
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-05
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-04-18, 1995-10-20, 1995-11-07, 1995-11-24, 1995-12-02, 1995-12-06, 1995-12-16, 1996-02-21, 1996-03-13, 1996-03-22, 1996-03-23, 1996-11-12, 1996-11-14, 1996-11-30, 1997-02-05, 1997-03-02
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-04-03, 1983-01-15, 1983-02-01
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-04-04
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-10-21
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-04-04
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-03-06, 1981-03-18, 1981-03-21, 1981-03-25, 1981-10-08
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1984-12-01, 1984-12-15, 1984-12-19
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-10-30, 1991-11-01
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-11-06, 1993-12-29, 1994-03-04
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-02-15
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-12-19, 1991-12-21, 1991-12-23, 1991-12-26, 1991-12-28, 1991-12-29, 1992-01-02, 1992-01-04, 1992-01-09, 1992-01-11, 1992-01-15, 1992-01-16, 1992-01-21, 1992-01-25, 1992-01-26, 1992-01-28, 1992-01-31, 1992-02-01, 1992-02-04, 1992-02-06, 1992-02-09, 1992-02-11, 1992-02-13, 1992-02-15, 1992-02-16, 1992-02-19, 1992-02-22, 1992-02-23, 1992-02-25, 1992-02-27, 1992-02-29, 1992-03-01, 1992-03-03, 1992-03-05, 1992-03-07, 1992-03-09, 1992-03-11, 1992-03-13, 1992-03-14, 1992-03-16, 1992-03-18, 1992-03-21, 1992-03-22, 1992-03-24, 1992-03-26, 1992-03-28, 1992-03-29, 1992-04-12, 1992-04-13, 1992-04-15
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1984-10-28, 1984-12-01, 1985-01-02
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2000-12-06, 2001-01-09, 2001-11-13
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-01-25
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2008-10-10, 2008-10-11, 2008-10-13, 2008-10-17, 2008-10-19, 2008-10-23, 2008-10-25, 2008-10-28, 2008-10-30, 2008-11-01, 2008-11-02, 2008-11-04, 2008-11-06, 2008-11-07, 2008-11-09, 2008-11-12, 2008-11-14, 2008-11-16, 2008-11-18, 2008-11-21, 2008-11-23, 2008-11-24, 2008-11-26, 2008-11-28, 2008-11-30, 2008-12-04, 2008-12-06, 2008-12-07, 2008-12-11, 2008-12-13, 2008-12-16, 2008-12-18, 2008-12-20, 2008-12-21, 2008-12-23, 2008-12-26, 2008-12-27, 2008-12-31, 2009-01-02, 2009-01-03, 2009-01-06, 2009-01-08, 2009-01-10, 2009-01-13, 2009-01-15, 2009-01-17, 2009-01-19, 2009-01-20, 2009-01-27, 2009-01-29, 2009-01-31, 2009-02-03, 2009-02-05, 2009-02-07, 2009-02-12, 2009-02-14, 2009-02-15, 2009-02-17, 2009-02-19, 2009-02-20, 2009-02-22, 2009-02-24, 2009-02-26, 2009-02-28, 2009-03-03, 2009-03-06, 2009-03-07, 2009-03-09, 2009-03-11, 2009-03-12, 2009-03-14, 2009-03-18, 2009-03-20, 2009-03-21, 2009-03-23, 2009-03-25, 2009-03-28, 2009-04-02, 2009-04-04, 2009-04-07, 2009-04-09, 2009-04-11
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-03-12
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-04-02, 2004-03-10, 2004-03-19, 2004-04-02
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2009-12-18, 2010-01-30
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2009-12-16, 2009-12-21, 2009-12-23, 2010-01-21, 2010-02-13, 2010-03-04, 2010-03-07, 2010-03-21, 2010-03-29, 2010-04-06
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-02-25
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-10-07, 2010-10-08, 2010-10-14, 2010-10-17, 2010-10-19, 2010-10-20, 2010-10-23, 2010-10-27, 2010-10-29, 2010-10-30, 2010-11-01, 2010-11-03, 2010-11-05, 2010-11-06, 2010-11-09, 2010-11-11, 2010-11-13, 2010-11-17, 2010-11-19, 2010-11-20, 2010-11-24, 2010-11-26, 2010-11-28, 2010-11-29, 2010-12-03, 2010-12-04, 2010-12-10, 2010-12-11, 2010-12-15, 2010-12-16, 2010-12-18, 2010-12-20, 2010-12-23, 2010-12-26, 2010-12-28, 2010-12-29, 2011-01-01, 2011-01-03, 2011-01-05, 2011-01-07, 2011-01-09, 2011-01-11, 2011-01-13, 2011-01-15, 2011-01-17, 2011-01-18, 2011-01-20, 2011-01-22, 2011-01-24, 2011-01-26, 2011-02-01, 2011-02-03, 2011-02-05, 2011-02-08, 2011-02-10, 2011-02-12, 2011-02-13, 2011-02-16, 2011-02-18, 2011-02-19, 2011-02-22, 2011-02-25, 2011-02-26, 2011-03-01, 2011-03-03, 2011-03-04, 2011-03-09, 2011-03-11, 2011-03-12, 2011-03-15, 2011-03-16, 2011-03-18, 2011-03-22, 2011-03-25, 2011-03-26, 2011-03-29, 2011-03-30, 2011-04-02, 2011-04-03, 2011-04-06, 2011-04-08, 2011-04-09
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-02-23, 2013-03-05, 2013-03-09, 2013-04-02
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-04-20, 2013-04-25
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-03-12
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2010-01-07, 2010-04-10, 2011-02-19, 2011-02-26, 2012-02-18, 2012-02-25, 2012-03-06
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2015-02-14, 2015-02-16, 2015-03-08, 2015-03-12
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-10-20, 2016-11-12, 2017-03-25, 2017-03-28, 2017-12-29, 2018-03-24, 2018-03-31, 2018-04-02
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-05-08
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-01-30, 2021-03-25, 2021-04-17, 2021-04-24, 2021-04-27, 2021-05-08
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-05-06
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1979-10-19, 1979-10-31, 1979-11-18
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-30, 1982-01-06, 1984-01-10, 1984-02-01, 1984-03-29
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-03-04, 1985-03-10
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-12-18
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-11-07
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-12-16, 1996-12-28, 1997-01-01, 1997-02-21, 1997-03-02, 1997-04-03, 1997-10-04, 1997-10-24, 1997-11-09, 1997-12-27, 1998-01-08
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-01-04, 1980-01-12
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-02-23, 1991-03-14, 1991-11-01, 1991-12-29, 1992-01-11, 1992-03-16, 1992-03-21, 1992-04-13, 1992-10-22, 1992-11-28, 1992-12-09, 1993-01-24, 1993-02-12, 1993-04-03
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-03-23, 1990-11-29
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1997-03-20, 1997-04-03, 1997-04-11
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-03-29
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-04-15
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-02-15, 1995-03-14, 1995-04-05, 1995-10-16
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-11-17
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1988-03-08, 1988-03-26, 1991-12-01
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-01-16, 1993-01-24
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-03-08, 1989-03-11
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-11-06, 1993-11-10, 1993-12-01, 1993-12-07, 1993-12-12, 1993-12-26, 1994-01-02
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-10-06, 1993-10-16, 1994-01-17, 1994-03-12, 1994-03-19, 1995-03-09, 1995-11-24, 1996-01-12, 1996-01-17, 1996-01-25, 1996-01-31, 1996-03-08
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-10-05, 1991-10-12, 1991-10-14, 1991-10-26, 1991-11-06
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-11-02, 1979-12-01, 1979-12-12, 1979-12-15
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-10-23, 1983-01-02, 1983-02-09
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-11-05, 1983-11-06, 1983-11-12, 1983-11-19, 1983-12-08
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-03-22, 1995-04-21, 1995-11-25, 1996-02-09, 1996-03-13, 1996-04-01
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1994-03-19, 1995-02-11
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-08
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-10-31, 1997-03-12, 1998-02-28, 1998-04-09, 1998-10-20, 1998-12-15, 1998-12-19, 1998-12-21, 1999-01-30, 1999-02-06, 1999-02-13, 1999-02-18, 1999-02-20, 1999-03-08, 1999-03-21, 1999-03-22, 1999-03-30, 1999-04-10, 1999-10-29
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-08, 2005-10-15, 2005-12-20
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2002-10-09, 2002-10-11, 2002-10-12, 2002-10-15, 2002-10-17, 2002-10-19, 2002-10-22, 2002-10-23, 2002-10-26, 2002-10-29, 2002-10-30, 2002-11-01, 2002-11-05, 2002-11-07, 2002-11-09, 2002-11-12, 2002-11-15, 2002-11-17, 2002-11-19, 2002-11-21, 2002-11-23, 2002-11-25, 2002-11-27, 2002-11-29, 2002-11-30, 2002-12-03, 2002-12-04, 2002-12-06, 2002-12-07, 2002-12-11, 2002-12-12, 2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2002-12-27, 2002-12-28, 2002-12-31, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-02-05
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2005-11-25, 2005-12-02, 2007-01-11, 2007-01-20
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-03-18, 2003-03-22
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-12-26, 2012-01-03, 2012-02-02, 2012-03-15, 2013-02-11
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-01-24
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-04-01
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-03-24
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-10-24, 2017-11-02, 2017-11-28
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-12-11, 2020-02-06
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2020-02-28, 2021-01-31, 2021-02-02, 2021-02-07, 2021-03-25, 2021-03-30, 2021-04-08, 2021-05-03
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-04-26
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-02-27, 2021-03-02, 2021-04-20, 2021-04-26
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-02-01, 1992-02-11, 1992-02-13, 1992-02-16, 1992-02-29, 1992-03-24
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1983-12-03, 1983-12-23, 1984-02-07, 1984-02-18, 1984-11-22, 1984-11-30, 1985-02-10, 1985-02-19, 1985-02-21, 1985-03-03, 1985-03-09
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-11-23, 1990-11-28, 1990-12-30, 1991-01-23, 1991-01-26
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-12-07
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-10-12, 1993-10-16
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2000-10-07, 2001-03-04
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-02-24, 1993-02-28, 1993-03-03, 1993-03-10, 1993-10-14
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-10-07, 1997-10-18, 1997-11-09, 1997-11-19, 1998-01-05
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1996-12-17, 1997-11-12
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1979-11-11, 1980-02-03, 1980-03-08
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-09
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-02-21, 1989-04-01
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-03-29, 2006-04-03, 2006-04-14
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-12-18, 1986-12-21
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-10-26
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-12-06, 1982-02-02, 1982-10-16, 1983-02-17
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2006-03-10
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1998-10-10, 1998-11-19, 2000-01-28, 2000-02-19, 2000-03-08, 2000-03-26, 2000-10-18, 2000-11-30, 2001-01-14, 2001-01-27, 2001-02-21, 2001-03-18
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2009-10-23, 2010-01-07, 2010-02-09
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-12-26, 1994-02-12
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-11-21, 2013-11-27, 2013-12-03, 2014-01-18, 2014-01-25
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-10-28
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-10-08, 2006-03-01
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2001-01-09, 2008-10-17, 2008-10-19
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-03-04
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-02, 2015-01-08, 2015-10-30, 2016-03-08, 2016-03-31
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-10-26, 2019-10-08, 2020-03-08
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-01-04, 2019-01-23, 2019-02-08, 2019-02-26
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2020-02-08, 2020-03-10
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-12-23, 1981-01-21, 1981-03-06, 1981-03-08
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-02-13, 1988-02-17, 1988-03-13, 1988-03-22
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1983-12-21, 1984-02-04, 1984-02-12
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-11-16, 1980-11-28
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-03-06
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-03-19
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-10-12, 1985-10-17, 1985-10-19, 1985-10-23, 1985-11-09
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-10-13, 1994-01-01, 1994-02-12
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-11-06, 2003-11-13, 2003-12-05, 2003-12-14, 2003-12-31, 2004-01-06, 2004-02-16
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1999-10-08, 1999-10-29, 1999-11-17, 1999-11-22, 1999-12-23, 2000-02-08, 2000-03-12, 2000-04-08, 2000-12-31, 2001-01-03, 2001-03-11, 2001-10-07, 2001-11-13
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-12-09
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-01-16
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-30, 2016-11-18
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-02-15, 2003-02-21, 2003-02-26, 2003-03-01, 2003-03-04, 2003-03-06, 2003-03-10, 2003-03-12, 2003-03-18, 2003-03-22, 2003-10-25, 2004-03-23, 2004-03-25, 2006-10-21, 2008-02-21, 2008-03-08, 2008-04-01, 2008-10-10, 2008-10-25, 2008-11-09, 2008-11-23, 2008-11-30, 2008-12-11, 2008-12-27
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-10-10
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2007-10-27, 2008-04-02, 2008-11-28, 2009-01-03, 2009-03-14, 2009-04-07
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-01-23, 2006-12-16, 2007-10-24, 2007-10-26, 2008-01-04, 2008-01-12, 2008-02-26, 2008-03-05, 2008-03-06, 2008-03-28
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2000-11-26
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-03-08, 1992-02-06
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-12-17, 1983-01-01, 1983-01-11, 1983-01-13, 1983-03-23
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1994-03-26, 1995-01-25, 1995-02-01, 1995-04-05, 1995-04-08, 1995-04-28, 1995-10-16, 1995-12-06
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-10-06
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-03-25
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-11-24, 1985-10-19, 1986-01-17, 1986-04-01, 1988-02-17, 1989-03-14
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-10-13, 1993-12-18
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1987-10-16, 1987-10-17, 1987-10-21, 1987-10-24, 1987-10-28, 1987-10-31, 1987-11-01, 1987-11-04, 1987-11-06, 1987-11-07, 1987-11-11, 1987-11-14, 1987-11-16, 1987-11-18, 1987-11-21, 1987-11-25, 1987-11-27, 1987-11-28, 1987-12-02, 1987-12-03, 1987-12-05, 1987-12-08, 1987-12-09, 1987-12-12, 1987-12-15, 1987-12-17, 1987-12-19, 1987-12-20, 1987-12-22, 1987-12-26, 1987-12-27, 1987-12-30, 1988-01-02, 1988-01-06, 1988-01-08, 1988-01-09, 1988-01-11, 1988-01-13, 1988-01-14, 1988-01-16, 1988-01-19, 1988-01-21, 1988-01-23, 1988-01-24, 1988-01-27, 1988-01-29, 1988-01-30, 1988-02-01, 1988-02-03, 1988-02-06, 1988-02-07, 1988-02-13, 1988-02-15, 1988-02-17, 1988-02-20, 1988-02-21, 1988-02-23, 1988-02-25, 1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-11-17, 1984-02-26, 1984-03-27, 1985-02-19
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1998-11-05, 1999-01-04
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-10-26, 2006-02-05
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-12-22, 1995-04-21
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-11-27, 1994-04-10
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2001-01-09, 2001-04-04
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-01-18, 2003-11-13
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-03-05
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2014-04-03, 2014-11-18, 2015-04-06
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-02-28, 2008-03-01, 2008-03-08, 2008-03-19, 2008-10-10, 2008-10-28, 2008-11-18, 2008-11-30, 2008-12-07, 2009-02-19, 2009-02-28, 2009-03-11
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-25
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-01-04, 2019-01-08, 2019-01-23, 2019-02-08, 2019-02-23
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-02-07, 2021-02-13, 2021-02-19, 2021-02-25, 2021-02-27, 2021-03-04, 2021-03-11, 2021-03-16, 2021-03-20, 2021-03-22, 2021-04-01, 2021-04-20, 2021-05-03
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-11-02
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1996-02-21, 1996-03-18
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-03-12, 1997-11-13, 1997-12-03, 1998-01-05, 1998-02-01, 1998-03-31, 1998-10-20, 1998-11-14
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-11-12, 1983-12-10
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-12-08, 1985-02-17, 1985-03-03, 1985-03-29, 1985-04-06
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1988-01-09, 1988-01-11, 1988-12-06, 1988-12-08, 1988-12-23, 1988-12-30, 1989-02-09, 1989-03-12, 1989-10-11, 1990-02-23
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-01-09
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1992-11-07, 1993-01-09, 1993-03-03
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2002-10-22, 2005-10-12, 2005-12-13, 2006-01-31, 2006-02-09, 2006-03-03, 2006-04-14, 2006-11-13, 2007-10-24
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-11-16, 2013-11-24, 2013-11-27, 2014-01-02, 2014-01-25, 2014-03-08
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-11-01, 2011-11-20, 2011-11-21, 2011-12-06, 2011-12-21, 2011-12-26, 2011-12-27, 2012-01-15
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2000-11-03, 2001-03-15, 2001-12-12, 2002-10-30, 2002-11-12, 2006-12-29, 2007-02-13
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2005-10-15, 2006-11-11, 2006-11-13, 2006-11-24
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-02-14
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2008-11-21, 2010-01-12, 2010-01-16
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-03-26
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-12-15, 2016-02-13, 2016-03-05, 2017-02-24, 2018-03-22, 2018-04-07
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-04-08, 2018-01-04, 2018-12-13, 2019-02-08, 2019-03-01, 2019-03-09, 2019-11-11, 2020-02-14, 2021-02-11, 2021-02-27
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-11-11
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1987-11-16, 1988-02-07, 1988-04-02, 1991-02-24
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-10-29
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1984-10-28, 1984-12-05, 1984-12-19
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-11-10, 1982-11-13, 1982-12-03, 1982-12-11, 1982-12-18, 1983-02-09, 1983-02-13, 1983-02-23, 1983-03-12, 1983-04-03
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-03-18, 1986-04-05, 1986-11-12, 1986-12-17, 1986-12-23, 1987-01-10, 1987-01-12, 1987-01-21, 1987-02-07, 1987-02-25, 1988-03-19, 1988-03-27, 1988-04-03
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-11-10, 1994-02-19
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-02-18, 1980-03-21, 1980-11-23, 1980-11-26, 1980-12-07, 1980-12-10
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-10-08, 1989-10-26, 1989-11-15, 1989-12-02, 1989-12-26, 1990-01-06, 1990-01-15, 1990-01-23, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-17, 1990-03-21, 1990-03-31, 1990-11-09, 1990-12-05, 1991-01-05, 1991-02-03, 1991-02-16, 1991-02-20, 1991-03-05, 1991-03-14
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-11-04, 2002-11-23
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-12-31, 2007-01-11
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-12-11, 2010-01-27, 2010-01-30, 2010-11-03
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-04
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2010-04-08, 2011-01-01, 2011-12-06
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2018-03-22, 2019-01-20, 2019-11-01
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2019-12-23, 2019-12-28, 2021-02-07
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1990-01-13, 1990-10-04, 1991-12-13, 1992-11-21, 1993-03-22, 1994-02-12, 1995-03-26, 1998-01-05
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-02-16
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-10-14
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-01-21
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1986-01-20, 1986-03-15, 1987-02-17
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1985-11-29, 1987-02-01, 1987-03-05
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-10-15
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-11-11
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2002-12-12
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2007-02-08, 2008-02-21
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2010-11-05, 2013-12-03, 2014-03-18
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2007-10-05, 2007-11-03, 2008-03-19
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2011-12-03, 2011-12-15, 2012-01-07, 2012-01-12, 2012-01-15, 2012-01-23, 2012-02-02, 2012-02-10, 2012-02-23, 2012-02-28, 2012-03-17
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2016-11-15, 2016-12-04, 2017-01-08
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-02-16, 2015-02-27, 2015-02-28, 2015-03-15, 2015-12-05
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-12-18
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-15
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1991-03-27, 1991-11-27, 1992-03-11
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-12-30, 1989-01-14, 1989-01-21, 1989-02-09, 1989-02-18
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-08, 1995-10-16, 1996-01-25, 1996-03-08, 1996-03-30, 1997-02-21, 1998-02-07, 1999-01-04, 2000-03-04
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-12-06
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-03-02, 2014-03-29, 2014-11-22, 2016-03-10
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-02-05, 2018-03-18
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-20, 2018-01-25
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-01-25
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1999-01-07, 1999-11-26, 1999-11-30, 2000-01-07
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-01-08
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2007-03-17, 2008-02-16
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-10-08, 2013-11-27, 2013-12-10, 2013-12-31, 2014-01-23, 2014-01-25, 2014-03-04, 2014-03-22, 2014-10-10
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-10-16, 2015-10-30, 2015-11-01, 2015-11-22, 2015-12-29, 2016-01-08
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-04-03
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-11-23
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-03-21
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1990-11-03, 1990-11-17, 1990-11-21, 1990-12-03, 1990-12-07, 1991-01-05, 1991-01-12, 1991-01-16, 1991-02-06, 1991-02-23, 1991-02-28, 1991-03-02, 1991-03-30, 1991-10-30, 1992-01-04, 1992-01-21
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-02-12
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-02-20, 1994-01-02
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-11-18, 1993-11-20
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-02-21
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-11-17
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-12-26
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-10-15, 2019-10-26, 2019-11-02, 2019-12-23, 2019-12-28, 2019-12-31, 2020-01-07, 2020-01-10, 2020-02-08, 2020-02-18
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-11-22, 1985-11-30
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-12-11, 1980-01-21, 1980-02-08, 1980-03-24, 1980-04-01
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1979-12-15, 1980-03-19, 1980-12-10
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1981-10-17, 1982-01-27, 1982-11-04, 1982-12-11, 1983-01-11, 1983-03-08, 1983-03-26, 1983-04-03, 1983-10-05, 1983-12-08, 1984-03-24
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-10-22, 1981-02-08, 1981-03-08, 1981-03-18
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2000-03-26, 2002-11-23
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-12-05, 2020-02-02
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1986-11-29, 1988-10-26, 1989-01-27
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-02-16, 1980-03-08
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-01-17, 1996-02-11, 1996-03-27, 1996-10-08
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-03-20
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-11-25
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-11-08
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1999-11-30, 2000-01-22
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2002-03-28, 2004-02-29, 2004-03-13
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-12-13
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-02-07, 2019-12-14, 2019-12-19, 2020-03-08
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-03-22, 1980-04-02
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1989-01-19, 1989-02-09, 1989-02-11
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-12-23, 1981-01-09, 1981-02-08, 1981-11-07, 1981-11-18, 1981-11-28, 1982-02-02
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-28
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2009-02-07, 2010-11-03
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-04-07
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-12-07, 2017-01-14
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2013-11-12, 2014-01-25, 2014-12-18
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-01-14
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-04-22
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-02-20
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-01-17, 1988-01-23
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1995-02-08, 1995-03-26, 1995-04-23
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-02-07
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-12-12, 2016-01-12
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-01-11, 2019-01-13, 2019-02-03, 2019-02-12
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-02-11, 2021-03-04, 2021-03-09, 2021-05-03, 2021-05-04
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1989-12-09, 1990-03-08, 1992-03-05
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-02-13
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-10-17, 1981-12-27, 1982-01-03, 1982-01-09, 1982-01-20
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-10-08, 1989-12-19, 1990-03-24, 1990-10-06, 1990-11-17, 1990-12-15
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-01-01
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1988-01-21, 1988-03-19, 1990-10-12, 1990-12-15, 1990-12-18, 1991-01-05
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-11-01, 2019-12-17
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2000-10-21, 2001-11-02, 2003-03-25, 2003-10-23, 2004-01-15, 2004-04-04, 2006-04-03, 2007-03-17
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-10-11
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-03-08, 1988-03-09, 1988-11-03, 1989-02-15, 1989-02-19, 1989-02-28, 1989-03-19, 1989-11-10, 1989-11-25
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-02-09, 1993-01-03, 1993-01-18, 1993-03-06
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-04-14
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-01-07
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-11-13
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-02-10, 2019-03-01, 2019-10-11, 2019-12-17
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-02-20, 1991-03-30, 1991-11-23, 1992-02-04, 1992-03-05, 1992-03-24
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-04-24, 1995-11-07
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-29, 2005-11-09, 2005-12-17, 2006-01-13, 2006-03-03, 2006-04-05, 2006-12-22
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-03-24
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1998-04-18
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2009-11-13, 2010-02-11, 2010-11-09
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-11-01, 2015-12-08
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-04-03
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-10-11
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1987-01-04
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-10-18
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-12-21, 1981-11-12
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-04-07
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-03-02
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1998-03-06, 2001-01-07
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1997-10-15, 1997-10-22, 1997-11-05, 1997-11-09, 1997-11-12, 1997-11-28, 1998-10-20, 1998-11-05, 1998-11-29, 1999-02-10, 1999-11-07, 1999-11-27, 1999-11-30, 1999-12-23, 2000-03-12
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-12-29, 2012-02-20, 2013-02-11, 2014-04-13, 2015-02-20
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2016-11-12, 2017-12-23, 2018-02-13, 2019-02-26, 2019-11-23, 2019-12-07, 2021-02-15
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-30
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1994-01-08, 1994-01-19, 1995-03-16, 1995-03-25, 1995-11-04, 1995-12-13, 1996-02-28, 1996-04-08, 1999-01-26, 1999-02-15, 1999-04-14, 1999-11-27, 2000-01-06, 2000-01-11, 2000-01-17, 2000-01-22, 2000-02-14, 2000-02-19
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-12-26, 1982-02-05
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-10-15, 1988-11-26, 1988-12-02, 1988-12-06, 1988-12-21, 1989-01-14, 1989-02-23, 1989-02-26, 1989-11-04, 1989-11-15, 1989-11-25, 1989-11-28, 1989-12-06, 1990-01-13, 1990-01-19, 1990-02-03, 1990-03-11, 1990-03-24, 1990-11-23, 1990-12-05
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-04-27
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-03
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-12-30, 1982-01-02, 1982-01-11, 1982-01-25, 1982-01-30, 1982-02-06, 1982-02-22, 1982-10-09, 1982-11-10, 1982-12-04
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1998-11-11
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2007-10-27, 2007-12-08
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-23, 1991-03-27, 1991-10-14, 1991-10-16, 1991-10-19, 1991-10-23, 1991-11-12, 1991-11-27, 1991-12-07, 1991-12-21, 1991-12-23, 1991-12-26, 1992-01-02, 1992-02-19, 1992-02-27, 1992-03-11, 1992-10-12
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-12-13, 1985-12-14, 1985-12-26, 1986-01-04, 1986-01-07, 1986-03-22, 1987-01-04, 1987-02-06, 1987-03-05
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-11-19
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-10-19
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2001-03-04, 2001-12-31, 2002-03-07
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-01-31, 1996-12-17, 1997-01-25
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-02-24, 1982-03-16
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-10-26, 1996-11-12, 1996-12-28, 1997-04-11, 1997-11-03, 1998-03-23, 1999-01-26, 1999-03-06
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2009-03-07, 2009-04-07
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2009-04-07, 2009-10-09, 2009-12-28, 2010-01-12, 2010-01-21, 2010-01-24, 2010-03-18, 2010-03-25, 2010-11-05, 2010-11-13, 2010-11-17, 2010-11-19, 2010-12-18, 2011-01-24, 2011-11-12, 2011-11-21, 2012-03-10, 2012-03-18, 2012-03-24
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-03-10, 1986-03-23, 1987-11-18, 1988-02-23
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-12-16
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1987-03-05
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2006-01-31, 2007-01-26, 2008-12-26, 2009-03-20
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-11-21, 1979-12-19
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-04-03, 2018-10-07
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-10-25, 1984-02-12, 1984-02-16, 1984-02-25, 1984-11-03
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-02-12, 1984-11-22
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2011-10-08, 2013-02-04
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-01-20, 2021-04-06
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-12-22, 1985-12-21, 1986-01-23, 1987-03-22, 1987-11-27, 1989-03-14
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-01-09, 1999-10-30, 2003-10-28
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-11-02, 1979-11-30, 1980-01-12, 1980-03-28, 1980-04-06, 1980-10-09, 1980-12-26, 1981-04-01
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-03-24
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-02-21
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-01-04
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-10-25, 1984-12-22, 1986-01-07, 1988-02-07
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-29, 2010-11-09, 2015-03-08
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-18
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-01-21, 1980-02-23, 1980-04-04, 1983-01-06
##     mostAssistsOneGame mostAssistsOneSeason         mostAssistsSeasonIds
## 1                    0                    0                     19921993
## 2                    1                    1                     19791980
## 3                    0                    0                     19801981
## 4                    1                    2                     19901991
## 5                    0                    0                     19831984
## 6                    0                    0                     19891990
## 7                    0                    0                     19871988
## 8                    0                    0                     19861987
## 9                    1                    1                     19811982
## 10                   1                    1                     19861987
## 11                   0                    0                     19861987
## 12                   1                    1                     19891990
## 13                   0                    0                     19891990
## 14                   1                    1                     19821983
## 15                   0                    0                     19831984
## 16                   0                    0                     19791980
## 17                   0                    0                     19861987
## 18                   1                    4                     19841985
## 19                   0                    0                     19801981
## 20                   1                    6                     19921993
## 21                   0                    0                     19891990
## 22                   1                    1                     19791980
## 23                   2                    3                     19811982
## 24                   0                    0           19811982, 19831984
## 25                   1                    3                     19931994
## 26                   0                    0                     19811982
## 27                   0                    0                     19851986
## 28                   0                    0                     19911992
## 29                   0                    0                     19901991
## 30                   0                    0                     19881989
## 31                   1                    7                     19871988
## 32                   0                    0                     19791980
## 33                   0                    0                     19791980
## 34                   0                    0           19861987, 19871988
## 35                   1                    1                     19791980
## 36                   2                    4                     19911992
## 37                   0                    0                     19881989
## 38                   0                    0           19881989, 19891990
## 39                   0                    0                     19871988
## 40                   1                    3                     19791980
## 41                   1                    5                     20032004
## 42                   0                    0                     19901991
## 43                   1                    3                     19971998
## 44                   2                    5                     20002001
## 45                   3                    4                     19901991
## 46                   0                    0                     19992000
## 47                   0                    0                     19921993
## 48                   0                    0           19951996, 19961997
## 49                   2                    4                     19961997
## 50                   2                    8                     19992000
## 51                   1                    1           19971998, 19981999
## 52                   1                    1                     20012002
## 53                   0                    0                     20022003
## 54                   1                    2                     19992000
## 55                   0                    0                     20012002
## 56                   0                    0                     20032004
## 57                   0                    0                     20002001
## 58                   2                    9                     20112012
## 59                   0                    0                     20012002
## 60                   1                    1                     20022003
## 61                   1                    4                     20082009
## 62                   0                    0                     20002001
## 63                   1                    2                     20082009
## 64                   0                    0                     20032004
## 65                   0                    0                     20122013
## 66                   1                    1                     20052006
## 67                   2                    4                     20132014
## 68                   1                    2                     20022003
## 69                   1                    1                     20072008
## 70                   1                    4                     20122013
## 71                   0                    0                     20092010
## 72                   2                    5                     20072008
## 73                   0                    0                     20072008
## 74                   0                    0                     20152016
## 75                   1                   10                     20102011
## 76                   1                    1                     20052006
## 77                   0                    0                     20092010
## 78                   1                    1                     20082009
## 79                   0                    0                     20122013
## 80                   0                    0                     20122013
## 81                   0                    0                     20092010
## 82                   1                    3                     20102011
## 83                   0                    0                     20132014
## 84                   0                    0                     20142015
## 85                   0                    0                     20122013
## 86                   0                    0                     20142015
## 87                   1                    2                     20142015
## 88                   0                    0                     20142015
## 89                   0                    0           20142015, 20152016
## 90                   0                    0                     20142015
## 91                   1                    2                     20162017
## 92                   1                    6                     20162017
## 93                   1                    1                     20122013
## 94                   0                    0                     20162017
## 95                   0                    0           20142015, 20152016
## 96                   0                    0 20152016, 20172018, 20182019
## 97                   1                    1           20152016, 20162017
## 98                   2                    3                     20172018
## 99                   0                    0           20172018, 20182019
## 100                  0                    0                     20162017
## 101                  0                    0                     20162017
## 102                  0                    0           20172018, 20182019
## 103                  1                    1                     20192020
## 104                  0                    0                     20192020
## 105                  1                    1                     20192020
## 106                  0                    0                     20202021
## 107                  0                    0                     20202021
## 108                  0                    0                     20202021
## 109                  0                    0                     20202021
## 110                  1                    6                     19821983
## 111                  2                   10                     19801981
## 112                  2                   10                     19961997
## 113                  2                    8                     19851986
## 114                  1                    1                     19881989
## 115                  1                    4                     19811982
## 116                  1                    2                     19911992
## 117                  1                    3                     19901991
## 118                  1                    6                     19941995
## 119                  1                    1                     19791980
## 120                  1                    2                     19851986
## 121                  1                    9           19821983, 19831984
## 122                  2                   11                     19831984
## 123                  1                    1                     19811982
## 124                  2                   22                     19881989
## 125                  1                    2                     19821983
## 126                  1                    6                     19801981
## 127                  1                    4                     19921993
## 128                  1                    4                     19871988
## 129                  2                   11                     19811982
## 130                  2                    7                     19801981
## 131                  1                    1                     19901991
## 132                  1                    1                     19831984
## 133                  1                    2                     19931994
## 134                  2                    7                     19921993
## 135                  0                    0                     19931994
## 136                  0                    0                     20062007
## 137                  1                    3                     19951996
## 138                  1                    1           19961997, 19971998
## 139                  1                    3                     20022003
## 140                  2                   13                     20112012
## 141                  1                    2                     20032004
## 142                  0                    0                     20032004
## 143                  1                    1                     20032004
## 144                  1                    3                     20092010
## 145                  1                    1                     20072008
## 146                  1                    1                     20082009
## 147                  0                    0                     20102011
## 148                  0                    0                     20072008
## 149                  1                    2                     20102011
## 150                  2                   10                     20092010
## 151                  0                    0                     20162017
## 152                  1                    2                     20072008
## 153                  1                    3                     20112012
## 154                  1                    1                     20122013
## 155                  2                    5                     20172018
## 156                  1                    1                     20152016
## 157                  2                   13                     20182019
## 158                  1                    2                     20182019
## 159                  2                   11                     20202021
## 160                  1                    2                     19801981
## 161                  1                    4                     19861987
## 162                  1                    8                     19851986
## 163                  2                    4                     19841985
## 164                  2                    4           19941995, 19951996
## 165                  1                   10                     19951996
## 166                  1                    2                     19821983
## 167                  2                    5                     19791980
## 168                  1                    1                     19821983
## 169                  1                    5                     19791980
## 170                  1                    4                     19801981
## 171                  1                    3                     19841985
## 172                  1                    2                     19911992
## 173                  1                    3                     19931994
## 174                  1                    1                     19791980
## 175                  0                    0                     19911992
## 176                  1                    3                     19841985
## 177                  1                    2                     20002001
## 178                  1                    1                     19961997
## 179                  0                    0                     20082009
## 180                  2                    5                     20022003
## 181                  1                    3                     20032004
## 182                  2                    8                     20092010
## 183                  1                   10                     20092010
## 184                  2                    4                     20102011
## 185                  0                    0                     20102011
## 186                  1                    4                     20122013
## 187                  1                    2                     20122013
## 188                  2                    8                     20142015
## 189                  1                    3                     20112012
## 190                  1                    4                     20142015
## 191                  1                    4           20162017, 20172018
## 192                  1                    1                     20202021
## 193                  1                    6                     20202021
## 194                  1                    1                     20202021
## 195                  1                    3                     19791980
## 196                  2                   16                     19831984
## 197                  2                    8                     19841985
## 198                  3                    9                     19931994
## 199                  2                    4                     19971998
## 200                  1                    6                     19961997
## 201                  3                   15                     19791980
## 202                  1                    6           19911992, 19921993
## 203                  2                   10                     19881989
## 204                  1                    3                     19961997
## 205                  3                    9                     19861987
## 206                  2                   11                     19921993
## 207                  2                   17                     19941995
## 208                  2                   14                     19791980
## 209                  2                   12                     19891990
## 210                  1                    2                     19921993
## 211                  2                   11                     19881989
## 212                  1                    7                     19931994
## 213                  1                    6                     19951996
## 214                  1                    5                     19911992
## 215                  1                    4                     19791980
## 216                  3                   28                     19821983
## 217                  1                    5                     19831984
## 218                  1                    4                     19951996
## 219                  2                    6                     19941995
## 220                  2                    5                     19941995
## 221                  1                   14                     19981999
## 222                  2                   20                     20052006
## 223                  0                    0                     20022003
## 224                  0                    0                     20022003
## 225                  2                   11                     20022003
## 226                  2                   11                     20062007
## 227                  1                    2                     20022003
## 228                  1                    4                     20112012
## 229                  2                    2           20112012, 20122013
## 230                  2                    7                     20132014
## 231                  2                    4                     20172018
## 232                  1                    3                     20172018
## 233                  2                   13                     20172018
## 234                  1                    7                     20202021
## 235                  2                    6                     20202021
## 236                  1                    4                     20202021
## 237                  1                    6                     19911992
## 238                  1                    7                     19841985
## 239                  2                   19                     19901991
## 240                  2                    4           19992000, 20022003
## 241                  2                    7                     19921993
## 242                  2                   14                     20002001
## 243                  1                    4                     19921993
## 244                  1                    5                     19971998
## 245                  2                   13                     19961997
## 246                  2                   16                     19791980
## 247                  3                   12                     19811982
## 248                  2                   13                     19881989
## 249                  1                    3                     20052006
## 250                  2                    8                     19861987
## 251                  4                   32                     19891990
## 252                  2                   13                     19821983
## 253                  2                    9                     20052006
## 254                  1                    6                     20002001
## 255                  1                    3                     20092010
## 256                  2                   11                     19931994
## 257                  1                    5                     20132014
## 258                  2                   10                     20032004
## 259                  1                    2                     20052006
## 260                  2                    8 20022003, 20062007, 20082009
## 261                  2                    6                     20092010
## 262                  2                   10           20132014, 20152016
## 263                  2                   10                     20192020
## 264                  1                    4                     20182019
## 265                  3                   20                     20192020
## 266                  1                    3                     19801981
## 267                  1                    4                     19871988
## 268                  2                   20                     19831984
## 269                  2                    6                     19801981
## 270                  3                   23                     19821983
## 271                  2                    6                     19921993
## 272                  1                    5                     19851986
## 273                  2                   25                     19931994
## 274                  1                    7                     20032004
## 275                  1                    8                     19992000
## 276                  2                    7                     20112012
## 277                  2                    3                     20032004
## 278                  2                   14                     20152016
## 279                  1                   10                     20022003
## 280                  3                   17                     20112012
## 281                  2                   25                     20082009
## 282                  1                    8                     20072008
## 283                  3                   11                     19801981
## 284                  3                   18                     20002001
## 285                  2                    3                     19911992
## 286                  2                   25                     19821983
## 287                  1                    5                     19941995
## 288                  3                   16                     19811982
## 289                  2                    3                     19831984
## 290                  2                   20                     19851986
## 291                  1                    2                     19931994
## 292                  0                    0                     19871988
## 293                  2                   23                     19831984
## 294                  2                   11                     19981999
## 295                  2                   19                     20052006
## 296                  2                   10                     19931994
## 297                  2                    6                     19921993
## 298                  3                   19                     20012002
## 299                  1                    1           20022003, 20032004
## 300                  3                   38                     20052006
## 301                  2                   20                     20142015
## 302                  1                    8                     20082009
## 303                  2                    8                     20132014
## 304                  1                    5                     20182019
## 305                  1                   13                     20202021
## 306                  3                   17                     19911992
## 307                  3                   31                     19951996
## 308                  2                   27                     19971998
## 309                  2                   15                     19831984
## 310                  1                    5                     19841985
## 311                  1                    6                     19881989
## 312                  3                    7                     19871988
## 313                  2                   29                     19921993
## 314                  2                   22                     20052006
## 315                  1                    6                     20132014
## 316                  1                    8                     20112012
## 317                  2                   22                     20002001
## 318                  2                   22                     20062007
## 319                  2                   14                     20142015
## 320                  3                   40                     20092010
## 321                  2                    8                     20142015
## 322                  2                   10                     20152016
## 323                  2                   22                     20182019
## 324                  2                   13                     20192020
## 325                  2                   21                     19871988
## 326                  3                   13                     19791980
## 327                  2                   20                     19841985
## 328                  1                   10                     19821983
## 329                  1                    8                     19861987
## 330                  2                   20                     19931994
## 331                  2                   28                     19791980
## 332                  1                   14                     19891990
## 333                  3                   26                     19961997
## 334                  2                   12                     20062007
## 335                  2                   13                     20092010
## 336                  2                   14                     20132014
## 337                  2                   23                     20102011
## 338                  3                   30                     20192020
## 339                  2                   21                     20192020
## 340                  2                   17                     19931994
## 341                  2                   10                     19941995
## 342                  2                   10                     19911992
## 343                  3                    9                     19801981
## 344                  2                   16                     19851986
## 345                  2                   23                     19851986
## 346                  3                   33                     19871988
## 347                  3                   18                     19811982
## 348                  3                   15                     20022003
## 349                  2                    9                     20072008
## 350                  2                   14                     20112012
## 351                  2                   15                     20072008
## 352                  1                   11                     20112012
## 353                  1                    3                     20162017
## 354                  2                   14                     20152016
## 355                  2                   13                     19821983
## 356                  2                    8                     19791980
## 357                  2                   13                     19911992
## 358                  2                   16                     19881989
## 359                  2                   20                     19951996
## 360                  3                   12                     20022003
## 361                  2                   17                     20142015
## 362                  2                   14                     20152016
## 363                  3                   25                     20162017
## 364                  3                   17                     19851986
## 365                  2                   29                     19992000
## 366                  4                   33                     19931994
## 367                  2                   10                     20062007
## 368                  2                   33                     20132014
## 369                  2                   22                     20152016
## 370                  2                    9                     20142015
## 371                  3                   18                     20182019
## 372                  2                    8                     19911992
## 373                  1                   13                     19901991
## 374                  4                   16                     19831984
## 375                  2                   17                     19921993
## 376                  2                   17                     19931994
## 377                  3                   32                     20002001
## 378                  2                   13                     20032004
## 379                  2                   12                     20112012
## 380                  1                   10                     20192020
## 381                  3                   30                     19841985
## 382                  2                   19                     19791980
## 383                  3                   52                     19791980
## 384                  2                   24                     19821983
## 385                  2                   28                     19801981
## 386                  3                   31                     19992000
## 387                  2                   17                     20192020
## 388                  4                   43                     19851986
## 389                  2                   14                     19791980
## 390                  3                   37                     19951996
## 391                  3                   29                     20102011
## 392                  2                   26                     19791980
## 393                  3                   38                     19831984
## 394                  2                   24                     19992000
## 395                  2                   12                     20032004
## 396                  3                   23                     20172018
## 397                  2                   11                     20192020
## 398                  2                   12                     19791980
## 399                  2                   18                     19881989
## 400                  2                   21                     19811982
## 401                  4                   36                     19801981
## 402                  3                   32                     20082009
## 403                  4                   19                     20082009
## 404                  2                   24                     20162017
## 405                  2                   18                     20142015
## 406                  3                   16                     20182019
## 407                  3                   27                     20202021
## 408                  2                   10                     19921993
## 409                  3                   24                     19881989
## 410                  2                   18                     19941995
## 411                  3                   34                     20142015
## 412                  3                   34                     20162017
## 413                  2                   23                     20182019
## 414                  2                   26                     20202021
## 415                  3                   29                     19911992
## 416                  3                   24                     19901991
## 417                  2                   32                     19811982
## 418                  2                   17                     19901991
## 419                  2                   19                     19821983
## 420                  2                   20                     19871988
## 421                  3                   32                     20202021
## 422                  2                   26                     20032004
## 423                  3                   17                     20092010
## 424                  2                   27                     19881989
## 425                  3                   51                     19921993
## 426                  3                   31                     19921993
## 427                  4                   24                     20002001
## 428                  4                   29                     20162017
## 429                  2                   18                     20192020
## 430                  2                   24                     19911992
## 431                  2                   14                     19961997
## 432                  3                   55                     20052006
## 433                  3                   30                     20062007
## 434                  3                   25                     20012002
## 435                  2                   19                     20092010
## 436                  3                   29                     20162017
## 437                  4                   64                     19921993
## 438                  3                   37                     19861987
## 439                  4                   32                     19861987
## 440                  4                   39                     19841985
## 441                  2                   22                     19801981
## 442                  3                   31                     19921993
## 443                  3                   31                     20122013
## 444                  3                   29                     20002001
## 445                  2                   30                     19992000
## 446                  2                   19                     20112012
## 447                  3                   55                     20182019
## 448                  5                   56                     19791980
## 449                  2                   28                     19951996
## 450                  2                   19                     19811982
## 451                  2                   40           19881989, 19891990
## 452                  3                   37                     20192020
## 453                  3                   42                     19921993
## 454                  2                   25                     19811982
## 455                  3                   33                     19981999
## 456                  3                   36                     20072008
## 457                  2                   51                     19911992
## 458                  2                   29                     19851986
## 459                  4                   38                     20102011
## 460                  5                   42                     19831984
## 461                  3                   42                     20012002
## 462                  4                   52                     19801981
## 463                  3                   29           19951996, 19961997
## 464                  3                   40                     19811982
## 465                  2                   37                     19971998
## 466                  4                   32                     20062007
## 467                  2                   35                     20092010
## 468                  3                   44                     19861987
## 469                  4                   56                     20062007
## 470                  6                   69                     19891990
## 471                  3                   53                     20082009
## 472                  2                   24                     19791980
## 473                  3                   45                     20052006
## 474                  3                   52                     19831984
## 475                  3                   25                     19831984
## 476                  3                   32                     20102011
## 477                  3                   53                     20182019
## 478                  3                   47                     19851986
## 479                  3                   38                     19992000
## 480                  3                   65                     19801981
## 481                  4                   45                     19891990
## 482                  3                   34                     19951996
## 483                  4                   44                     19881989
## 484                  3                   34                     19851986
## 485                  4                   55                     20052006
## 486                  3                   43                     19921993
## 487                  3                   44                     19791980
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             mostGoalsGameDates
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1992-10-06, 1992-10-08, 1992-10-10, 1992-10-12, 1992-10-14, 1992-10-17, 1992-10-20, 1992-10-22, 1992-10-24, 1992-10-28, 1992-10-31, 1992-11-03, 1992-11-06, 1992-11-07, 1992-11-11, 1992-11-13, 1992-11-14, 1992-11-18, 1992-11-19, 1992-11-21, 1992-11-25, 1992-11-27, 1992-11-28, 1992-12-01, 1992-12-03, 1992-12-05, 1992-12-09, 1992-12-11, 1992-12-12, 1992-12-16, 1992-12-18, 1992-12-19, 1992-12-21, 1992-12-23, 1992-12-26, 1992-12-27, 1992-12-31, 1993-01-02, 1993-01-03, 1993-01-06, 1993-01-09, 1993-01-10, 1993-01-13, 1993-01-15, 1993-01-16, 1993-01-18, 1993-01-21, 1993-01-23, 1993-01-24, 1993-01-27, 1993-01-28, 1993-01-30, 1993-02-03, 1993-02-08, 1993-02-12, 1993-02-13, 1993-02-17, 1993-02-20, 1993-02-21, 1993-02-24, 1993-02-27, 1993-02-28, 1993-03-03, 1993-03-05, 1993-03-06, 1993-03-08, 1993-03-10, 1993-03-13, 1993-03-16, 1993-03-19, 1993-03-22, 1993-03-24, 1993-03-27, 1993-03-28, 1993-03-30, 1993-04-01, 1993-04-03, 1993-04-05, 1993-04-07, 1993-04-10, 1993-04-11, 1993-04-13, 1993-04-14, 1993-04-16
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1990-10-17, 1990-10-19, 1990-10-24, 1990-10-27, 1990-10-28, 1990-10-31, 1990-11-03, 1990-11-06, 1990-11-09, 1990-11-10, 1990-11-14, 1990-11-15, 1990-11-17, 1990-11-21, 1990-11-23, 1990-11-24, 1990-11-28, 1990-11-29, 1990-12-01, 1990-12-03, 1990-12-05, 1990-12-07, 1990-12-08, 1990-12-12, 1990-12-13, 1990-12-15, 1990-12-18, 1990-12-20, 1990-12-22, 1990-12-23, 1990-12-26, 1990-12-29, 1990-12-30, 1991-01-02, 1991-01-05, 1991-01-08, 1991-01-10, 1991-01-12, 1991-01-13, 1991-01-16, 1991-01-23, 1991-01-24, 1991-01-26, 1991-01-29, 1991-01-31, 1991-02-02, 1991-02-03, 1991-02-06, 1991-02-09, 1991-02-10, 1991-02-13, 1991-02-15, 1991-02-16, 1991-02-20, 1991-02-23, 1991-02-24, 1991-02-26, 1991-02-28, 1991-03-02, 1991-03-03, 1991-03-05, 1991-03-09, 1991-03-10, 1991-03-12, 1991-03-14, 1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31, 1992-02-25, 1992-02-27, 1992-02-29, 1992-03-01, 1992-03-03, 1992-03-05, 1992-03-07, 1992-03-09, 1992-03-11, 1992-03-13, 1992-03-14, 1992-03-16, 1992-03-18, 1992-03-21, 1992-03-22, 1992-03-24, 1992-03-26, 1992-03-28, 1992-03-29, 1992-04-12, 1992-04-13, 1992-04-15
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04, 1982-10-06, 1982-10-09, 1982-10-10, 1982-10-14, 1982-10-16, 1982-10-20, 1982-10-21, 1982-10-23, 1982-10-26, 1982-10-30, 1982-11-02, 1982-11-04, 1982-11-06, 1982-11-07, 1982-11-10, 1982-11-13, 1982-11-16, 1982-11-17, 1982-11-20, 1982-11-24, 1982-11-26, 1982-11-27, 1982-12-01, 1982-12-03, 1982-12-04, 1982-12-06, 1982-12-08, 1982-12-11, 1982-12-12, 1982-12-14, 1982-12-17, 1982-12-18, 1982-12-21, 1982-12-23, 1982-12-26, 1982-12-28, 1982-12-30, 1983-01-01, 1983-01-02, 1983-01-06, 1983-01-08, 1983-01-09, 1983-01-11, 1983-01-13, 1983-01-15, 1983-01-18, 1983-01-20, 1983-01-22, 1983-01-23, 1983-01-27, 1983-01-29, 1983-02-01, 1983-02-02, 1983-02-05, 1983-02-09, 1983-02-12, 1983-02-13, 1983-02-15, 1983-02-17, 1983-02-19, 1983-02-20, 1983-02-23, 1983-02-25, 1983-02-27, 1983-03-01, 1983-03-05, 1983-03-06, 1983-03-08, 1983-03-10, 1983-03-12, 1983-03-15, 1983-03-16, 1983-03-20, 1983-03-22, 1983-03-23, 1983-03-26, 1983-03-27, 1983-03-29, 1983-04-02, 1983-04-03
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05, 1987-10-16, 1987-10-17, 1987-10-21, 1987-10-24, 1987-10-28, 1987-10-31, 1987-11-01, 1987-11-04, 1987-11-06, 1987-11-07, 1987-11-11, 1987-11-14, 1987-11-16, 1987-11-18, 1987-11-21, 1987-11-25, 1987-11-27, 1987-11-28, 1987-12-02, 1987-12-03, 1987-12-05, 1987-12-08, 1987-12-09, 1987-12-12, 1987-12-15, 1987-12-17, 1987-12-19, 1987-12-20, 1987-12-22, 1987-12-26, 1987-12-27, 1987-12-30, 1988-01-02
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1982-10-06, 1982-10-09, 1982-10-10, 1982-10-14, 1982-10-16, 1982-10-20, 1982-10-21, 1982-10-23, 1982-10-26, 1982-10-30, 1982-11-02, 1982-11-04, 1982-11-06, 1982-11-07, 1982-11-10, 1982-11-13, 1982-11-16, 1982-11-17, 1982-11-20, 1982-11-24, 1982-11-26, 1982-11-27, 1982-12-01, 1982-12-03, 1982-12-04, 1982-12-06, 1982-12-08, 1982-12-11, 1982-12-12, 1982-12-14, 1982-12-17, 1982-12-18, 1982-12-21, 1982-12-23, 1982-12-26, 1982-12-28, 1982-12-30, 1983-01-01, 1983-01-02, 1983-01-06, 1983-01-08, 1983-01-09, 1983-01-11, 1983-01-13, 1983-01-15, 1983-01-18, 1983-01-20, 1983-01-22, 1983-01-23, 1983-01-27, 1983-01-29, 1983-02-01, 1983-02-02, 1983-02-05, 1983-02-09, 1983-02-12, 1983-02-13, 1983-02-15, 1983-02-17, 1983-02-19, 1983-02-20, 1983-02-23, 1983-02-25, 1983-02-27, 1983-03-01, 1983-03-05, 1983-03-06, 1983-03-08, 1983-03-10, 1983-03-12, 1983-03-15, 1983-03-16, 1983-03-20, 1983-03-22, 1983-03-23, 1983-03-26, 1983-03-27, 1983-03-29, 1983-04-02, 1983-04-03
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1987-04-04, 1987-04-05
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1984-10-11, 1984-10-13, 1984-10-14, 1984-10-17, 1984-10-18, 1984-10-20, 1984-10-23, 1984-10-24, 1984-10-27, 1984-10-28, 1984-10-31, 1984-11-02, 1984-11-03, 1984-11-07, 1984-11-10, 1984-11-15, 1984-11-17, 1984-11-21, 1984-11-22, 1984-11-24, 1984-11-28, 1984-11-30, 1984-12-01, 1984-12-03, 1984-12-05, 1984-12-08, 1984-12-12, 1984-12-15, 1984-12-19, 1984-12-21, 1984-12-22, 1984-12-26, 1984-12-28, 1984-12-29, 1985-01-02, 1985-01-03, 1985-01-05, 1985-01-07, 1985-01-08, 1985-01-12, 1985-01-15, 1985-01-17, 1985-01-19, 1985-01-22, 1985-01-26, 1985-01-27, 1985-01-31, 1985-02-01, 1985-02-03, 1985-02-06, 1985-02-07, 1985-02-09, 1985-02-10, 1985-02-14, 1985-02-16, 1985-02-17, 1985-02-19, 1985-02-21, 1985-02-23, 1985-02-24, 1985-02-26, 1985-03-01, 1985-03-03, 1985-03-05, 1985-03-07, 1985-03-09, 1985-03-10, 1985-03-13, 1985-03-16, 1985-03-17, 1985-03-20, 1985-03-23, 1985-03-24, 1985-03-27, 1985-03-29, 1985-03-30, 1985-04-02, 1985-04-04, 1985-04-06, 1985-04-07
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1992-10-06, 1992-10-08, 1992-10-10, 1992-10-12, 1992-10-14, 1992-10-17, 1992-10-20, 1992-10-22, 1992-10-24, 1992-10-28, 1992-10-31, 1992-11-03, 1992-11-06, 1992-11-07, 1992-11-11, 1992-11-13, 1992-11-14, 1992-11-18, 1992-11-19, 1992-11-21, 1992-11-25, 1992-11-27, 1992-11-28, 1992-12-01, 1992-12-03, 1992-12-05, 1992-12-09, 1992-12-11, 1992-12-12, 1992-12-16, 1992-12-18, 1992-12-19, 1992-12-21, 1992-12-23, 1992-12-26, 1992-12-27, 1992-12-31, 1993-01-02, 1993-01-03, 1993-01-06, 1993-01-09, 1993-01-10, 1993-01-13, 1993-01-15, 1993-01-16, 1993-01-18, 1993-01-21, 1993-01-23, 1993-01-24, 1993-01-27, 1993-01-28, 1993-01-30, 1993-02-03, 1993-02-08, 1993-02-12, 1993-02-13, 1993-02-17, 1993-02-20, 1993-02-21, 1993-02-24, 1993-02-27, 1993-02-28, 1993-03-03, 1993-03-05, 1993-03-06, 1993-03-08, 1993-03-10, 1993-03-13, 1993-03-16, 1993-03-19, 1993-03-22, 1993-03-24, 1993-03-27, 1993-03-28, 1993-03-30, 1993-04-01, 1993-04-03, 1993-04-05, 1993-04-07, 1993-04-10, 1993-04-11, 1993-04-13, 1993-04-14, 1993-04-16
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1989-10-08, 1989-10-11, 1989-10-13, 1989-10-14, 1989-10-18, 1989-10-19, 1989-10-21, 1989-10-23, 1989-10-25, 1989-10-26, 1989-10-28, 1989-11-01, 1989-11-03, 1989-11-04, 1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04, 1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1993-11-03, 1993-11-06, 1993-11-10, 1993-11-13, 1993-11-17, 1993-11-18, 1993-11-20, 1993-11-23, 1993-11-24, 1993-11-27, 1993-11-29, 1993-12-01, 1993-12-04, 1993-12-07, 1993-12-08, 1993-12-11, 1993-12-12, 1993-12-15, 1993-12-18, 1993-12-22, 1993-12-23, 1993-12-26, 1993-12-28, 1993-12-29, 1994-01-01, 1994-01-02, 1994-01-05, 1994-01-06, 1994-01-08, 1994-01-12, 1994-01-14, 1994-01-15, 1994-01-17, 1994-01-19, 1994-01-24, 1994-01-26, 1994-01-27, 1994-01-29, 1994-02-01, 1994-02-02, 1994-02-04, 1994-02-06, 1994-02-11, 1994-02-12, 1994-02-16, 1994-02-17, 1994-02-19, 1994-02-24, 1994-02-26, 1994-02-27, 1994-03-02, 1994-03-04, 1994-03-05, 1994-03-09, 1994-03-10, 1994-03-12, 1994-03-13, 1994-03-16, 1994-03-17, 1994-03-19, 1994-03-22, 1994-03-25, 1994-03-26, 1994-03-29, 1994-03-30, 1994-04-02, 1994-04-06, 1994-04-07, 1994-04-10, 1994-04-11, 1994-04-14
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1985-10-10, 1985-10-12, 1985-10-15, 1985-10-17, 1985-10-19, 1985-10-23, 1985-10-24, 1985-10-26, 1985-10-29, 1985-10-30, 1985-11-02, 1985-11-05, 1985-11-07, 1985-11-09, 1985-11-13, 1985-11-16, 1985-11-19, 1985-11-21, 1985-11-23, 1985-11-27, 1985-11-29, 1985-11-30, 1985-12-04, 1985-12-07, 1985-12-11, 1985-12-13, 1985-12-14, 1985-12-16, 1985-12-18, 1985-12-19, 1985-12-21, 1985-12-23, 1985-12-26, 1985-12-28, 1985-12-29, 1985-12-31, 1986-01-02, 1986-01-04, 1986-01-07, 1986-01-10, 1986-01-12, 1986-01-15, 1986-01-17, 1986-01-18, 1986-01-20, 1986-01-23, 1986-01-25, 1986-01-27, 1986-01-29, 1986-02-01, 1986-02-02, 1986-02-06, 1986-02-08, 1986-02-09, 1986-02-11, 1986-02-14, 1986-02-15, 1986-02-18, 1986-02-19, 1986-02-22, 1986-02-23, 1986-02-26, 1986-03-01, 1986-03-02, 1986-03-05, 1986-03-07, 1986-03-08, 1986-03-10, 1986-03-13, 1986-03-15, 1986-03-18, 1986-03-19, 1986-03-22, 1986-03-23, 1986-03-26, 1986-03-29, 1986-04-01, 1986-04-03, 1986-04-05, 1986-04-06
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1991-10-16, 1991-10-19, 1991-10-23, 1991-10-26, 1991-10-27, 1991-10-30, 1991-11-01, 1991-11-02, 1991-11-06, 1991-11-09, 1991-11-10, 1991-11-12
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1991-03-10, 1991-03-12, 1991-03-14, 1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1987-10-08, 1987-10-10, 1987-10-11, 1987-10-14, 1987-10-16, 1987-10-17, 1987-10-21, 1987-10-24, 1987-10-28, 1987-10-31, 1987-11-01, 1987-11-04, 1987-11-06, 1987-11-07, 1987-11-11, 1987-11-14, 1987-11-16, 1987-11-18, 1987-11-21, 1987-11-25, 1987-11-27, 1987-11-28, 1987-12-02, 1987-12-03, 1987-12-05, 1987-12-08, 1987-12-09, 1987-12-12, 1987-12-15, 1987-12-17, 1987-12-19, 1987-12-20, 1987-12-22, 1987-12-26, 1987-12-27, 1987-12-30, 1988-01-02, 1988-01-06, 1988-01-08, 1988-01-09, 1988-01-11, 1988-01-13, 1988-01-14, 1988-01-16, 1988-01-19, 1988-01-21, 1988-01-23, 1988-01-24, 1988-01-27, 1988-01-29, 1988-01-30, 1988-02-01, 1988-02-03, 1988-02-06, 1988-02-07, 1988-02-13, 1988-02-15, 1988-02-17, 1988-02-20, 1988-02-21, 1988-02-23, 1988-02-25, 1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03, 1988-12-15, 1988-12-17, 1988-12-19, 1988-12-21, 1988-12-23, 1988-12-26, 1988-12-28, 1988-12-30, 1988-12-31, 1989-01-02, 1989-01-04, 1989-01-10, 1989-01-14, 1989-01-16, 1989-01-18, 1989-01-19, 1989-01-21, 1989-01-23, 1989-01-25, 1989-01-27, 1989-01-28, 1989-01-31, 1989-02-03, 1989-02-04, 1989-02-09, 1989-02-11, 1989-02-15, 1989-02-18, 1989-02-19, 1989-02-21, 1989-02-23, 1989-02-25, 1989-02-26, 1989-02-28, 1989-03-02, 1989-03-04, 1989-03-05, 1989-03-08, 1989-03-11, 1989-03-12, 1989-03-14, 1989-03-16, 1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-01-16, 1991-01-23, 1991-01-24, 1991-01-26, 1991-01-29, 1991-01-31, 1991-02-02, 1991-02-03, 1991-02-06, 1991-02-09, 1991-02-10, 1991-02-13, 1991-02-15, 1991-02-16, 1991-02-20, 1991-02-23, 1991-02-24, 1991-02-26, 1991-02-28, 1991-03-02, 1991-03-03, 1991-03-05, 1991-03-09, 1991-03-10, 1991-03-12, 1991-03-14, 1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31, 1991-11-17, 1991-11-22, 1991-11-23, 1991-11-25, 1991-11-27, 1991-11-30, 1991-12-01, 1991-12-04, 1991-12-07, 1991-12-13, 1991-12-14, 1991-12-17, 1991-12-19, 1991-12-21, 1991-12-23, 1991-12-26, 1991-12-28, 1991-12-29, 1992-01-02, 1992-01-04, 1992-01-09, 1992-01-11, 1992-01-15, 1992-01-16, 1992-01-21, 1992-01-25, 1992-01-26, 1992-01-28, 1992-01-31, 1992-02-01, 1992-02-04, 1992-02-06, 1992-02-09, 1992-02-11, 1992-02-13, 1992-02-15, 1992-02-16, 1992-02-19, 1992-02-22, 1992-02-23, 1992-02-25, 1992-02-27, 1992-02-29, 1992-03-01, 1992-03-03, 1992-03-05, 1992-03-07, 1992-03-09, 1992-03-11, 1992-03-13, 1992-03-14, 1992-03-16, 1992-03-18, 1992-03-21, 1992-03-22, 1992-03-24, 1992-03-26, 1992-03-28, 1992-03-29, 1992-04-12, 1992-04-13, 1992-04-15, 1994-03-26, 1994-03-29, 1994-03-30, 1994-04-02, 1994-04-06, 1994-04-07, 1994-04-10, 1994-04-11, 1994-04-14
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1988-10-08, 1988-10-09, 1988-10-12, 1988-10-15, 1988-10-19, 1988-10-22, 1988-10-26, 1988-10-28, 1988-10-29, 1988-11-01, 1988-11-03, 1988-11-05, 1988-11-07, 1988-11-09, 1988-11-10, 1988-11-12, 1988-11-16, 1988-11-18, 1988-11-19, 1988-11-23, 1988-11-26, 1988-11-30, 1988-12-02, 1988-12-03, 1988-12-06, 1988-12-08, 1988-12-10, 1988-12-14, 1988-12-15, 1988-12-17, 1988-12-19, 1988-12-21, 1988-12-23, 1988-12-26, 1988-12-28, 1988-12-30, 1988-12-31, 1989-01-02, 1989-01-04, 1989-01-10, 1989-01-14, 1989-01-16, 1989-01-18, 1989-01-19, 1989-01-21, 1989-01-23, 1989-01-25, 1989-01-27, 1989-01-28, 1989-01-31, 1989-02-03, 1989-02-04, 1989-02-09, 1989-02-11, 1989-02-15, 1989-02-18, 1989-02-19, 1989-02-21, 1989-02-23, 1989-02-25, 1989-02-26, 1989-02-28, 1989-03-02, 1989-03-04, 1989-03-05, 1989-03-08, 1989-03-11, 1989-03-12, 1989-03-14, 1989-03-16, 1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1988-02-23, 1988-02-25, 1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1997-10-01, 1997-10-03, 1997-10-04, 1997-10-07, 1997-10-10, 1997-10-11, 1997-10-13, 1997-10-15, 1997-10-18, 1997-10-20, 1997-10-22, 1997-10-24, 1997-10-26, 1997-10-31, 1997-11-03, 1997-11-05, 1997-11-07, 1997-11-09, 1997-11-12, 1997-11-13, 1997-11-16, 1997-11-19, 1997-11-21, 1997-11-23, 1997-11-26, 1997-11-28, 1997-11-29, 1997-12-01, 1997-12-03, 1997-12-05, 1997-12-06, 1997-12-10, 1997-12-12, 1997-12-16, 1997-12-18, 1997-12-20, 1997-12-23, 1997-12-26, 1997-12-27, 1997-12-30, 1997-12-31
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-03-30, 1991-03-31, 1991-10-05, 1991-10-08, 1991-10-12, 1991-10-14, 1991-10-16, 1991-10-19, 1991-10-23, 1991-10-26, 1991-10-27, 1991-10-30, 1991-11-01, 1991-11-02, 1991-11-06, 1991-11-09, 1991-11-10, 1991-11-12, 1991-11-14, 1991-11-16, 1991-11-17, 1991-11-22, 1991-11-23, 1991-11-25, 1991-11-27, 1991-11-30, 1991-12-01, 1991-12-04, 1991-12-07, 1991-12-13, 1991-12-14, 1991-12-17, 1991-12-19, 1991-12-21, 1991-12-23, 1991-12-26, 1991-12-28, 1991-12-29, 1992-01-02, 1992-01-04, 1992-01-09, 1992-01-11, 1992-01-15, 1992-01-16, 1992-01-21, 1992-01-25, 1992-01-26, 1992-01-28, 1992-01-31, 1992-02-01, 1992-02-04, 1992-02-06, 1992-02-09, 1992-02-11, 1992-02-13, 1992-02-15, 1992-02-16, 1992-02-19, 1992-02-22, 1992-02-23, 1992-02-25, 1992-02-27, 1992-02-29, 1992-03-03, 1992-03-05, 1992-03-07, 1992-03-09, 1992-03-11, 1992-03-13, 1992-03-14, 1992-03-16, 1992-03-18, 1992-03-21, 1992-03-22, 1992-03-24, 1992-03-26, 1992-03-28, 1992-03-29, 1992-04-12, 1992-04-13, 1992-04-15
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2000-03-15, 2000-03-17, 2000-03-18, 2000-03-21, 2000-03-22, 2000-03-26, 2000-03-27, 2000-03-29, 2000-03-31, 2000-04-02, 2000-04-03, 2000-04-08, 2000-04-09
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1993-04-13, 1993-04-14, 1993-04-16
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1995-10-07, 1995-10-11, 1995-10-14, 1995-10-16, 1995-10-20, 1995-10-21, 1995-10-25, 1995-10-27, 1995-10-28, 1995-11-02, 1995-11-04, 1995-11-05, 1995-11-07, 1995-11-11, 1995-11-14, 1995-11-15, 1995-11-18, 1995-11-20, 1995-11-22, 1995-11-24, 1995-11-25, 1995-11-29, 1995-12-01, 1995-12-02, 1995-12-06, 1995-12-09, 1995-12-10, 1995-12-13, 1995-12-15, 1995-12-16, 1995-12-18, 1995-12-20, 1995-12-22, 1995-12-23, 1995-12-28, 1995-12-30, 1995-12-31, 1996-01-03, 1996-01-05, 1996-01-06, 1996-01-09, 1996-01-10, 1996-01-12, 1996-01-16, 1996-01-17, 1996-01-24, 1996-01-25, 1996-01-27, 1996-01-30, 1996-01-31, 1996-02-02, 1996-02-07, 1996-02-09, 1996-02-11, 1996-02-14, 1996-02-17, 1996-02-21, 1996-02-23, 1996-02-25, 1996-02-28, 1996-03-01, 1996-03-02, 1996-03-06, 1996-03-08, 1996-03-09, 1996-03-13, 1996-03-16, 1996-03-18, 1996-03-20, 1996-03-22, 1996-03-23, 1996-03-25, 1996-03-27, 1996-03-30, 1996-04-01, 1996-04-03, 1996-04-04, 1996-04-06, 1996-04-08, 1996-04-11, 1996-04-13, 1996-04-14, 1996-10-05, 1996-10-08, 1996-10-12, 1996-10-17, 1996-10-19, 1996-10-24, 1996-10-26, 1996-10-30, 1996-10-31, 1996-11-02, 1996-11-04, 1996-11-06, 1996-11-08, 1996-11-09, 1996-11-12, 1996-11-14, 1996-11-16, 1996-11-20, 1996-11-22, 1996-11-23, 1996-11-27, 1996-11-29, 1996-11-30, 1996-12-03, 1996-12-05, 1996-12-07, 1996-12-11, 1996-12-12, 1996-12-14, 1996-12-16, 1996-12-17, 1996-12-20, 1996-12-21, 1996-12-26, 1996-12-28, 1996-12-29, 1997-01-01, 1997-01-02, 1997-01-04, 1997-01-06, 1997-01-09, 1997-01-10, 1997-01-12, 1997-01-15, 1997-01-20, 1997-01-22, 1997-01-24, 1997-01-25, 1997-01-30, 1997-01-31, 1997-02-05, 1997-02-06, 1997-02-08, 1997-02-12, 1997-02-13, 1997-02-15, 1997-02-16, 1997-02-19, 1997-02-21, 1997-02-22, 1997-02-26, 1997-02-28, 1997-03-02, 1997-03-05, 1997-03-07, 1997-03-08, 1997-03-12, 1997-03-13, 1997-03-15, 1997-03-16, 1997-03-20, 1997-03-21, 1997-03-25, 1997-03-27, 1997-03-29, 1997-04-02, 1997-04-03, 1997-04-05, 1997-04-07, 1997-04-09, 1997-04-11, 1997-04-13
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1996-10-05, 1996-10-08, 1996-10-12, 1996-10-17, 1996-10-19, 1996-10-24, 1996-10-26, 1996-10-30, 1996-10-31, 1996-11-02, 1996-11-04, 1996-11-06, 1996-11-08, 1996-11-09, 1996-11-12, 1996-11-14, 1996-11-16, 1996-11-20, 1996-11-22, 1996-11-23, 1996-11-27, 1996-11-29, 1996-11-30, 1996-12-03, 1996-12-05, 1996-12-07, 1996-12-11, 1996-12-12, 1996-12-14, 1996-12-16, 1996-12-17, 1996-12-20, 1996-12-21, 1996-12-26, 1996-12-28, 1996-12-29, 1997-01-01, 1997-01-02, 1997-01-04, 1997-01-06, 1997-01-09, 1997-01-10, 1997-01-12, 1997-01-15, 1997-01-20, 1997-01-22, 1997-01-24, 1997-01-25, 1997-01-30, 1997-01-31, 1997-02-05, 1997-02-06, 1997-02-08, 1997-02-12, 1997-02-13, 1997-02-15, 1997-02-16, 1997-02-19, 1997-02-21, 1997-02-22, 1997-02-26, 1997-02-28, 1997-03-02, 1997-03-05, 1997-03-07, 1997-03-08, 1997-03-12, 1997-03-13, 1997-03-15, 1997-03-16, 1997-03-20, 1997-03-21, 1997-03-25, 1997-03-27, 1997-03-29, 1997-04-02, 1997-04-03, 1997-04-05, 1997-04-07, 1997-04-09, 1997-04-11, 1997-04-13, 1997-10-01, 1997-10-03, 1997-10-04, 1997-10-07, 1997-10-10, 1997-10-11, 1997-10-13, 1997-10-15, 1997-10-18, 1997-10-20, 1997-10-22, 1997-10-24, 1997-10-26, 1997-10-31, 1997-11-03, 1997-11-05, 1997-11-07, 1997-11-09, 1997-11-12, 1997-11-13, 1997-11-16, 1997-11-19, 1997-11-21, 1997-11-23, 1997-11-26, 1997-11-28, 1997-11-29, 1997-12-01, 1997-12-03, 1997-12-05, 1997-12-06, 1997-12-10, 1997-12-12, 1997-12-16, 1997-12-18, 1997-12-20, 1997-12-23, 1997-12-26, 1997-12-27, 1997-12-30, 1997-12-31, 1998-01-03, 1998-01-05, 1998-01-06, 1998-01-08, 1998-01-10, 1998-01-12, 1998-01-14, 1998-01-21, 1998-01-22, 1998-01-24, 1998-01-27, 1998-01-28, 1998-01-30, 1998-02-01, 1998-02-04, 1998-02-07, 1998-02-28, 1998-03-02, 1998-03-05, 1998-03-06, 1998-03-08, 1998-03-12, 1998-03-14, 1998-03-15, 1998-03-18, 1998-03-20, 1998-03-23, 1998-03-26, 1998-03-28, 1998-03-29, 1998-03-31, 1998-04-01, 1998-04-04, 1998-04-06, 1998-04-08, 1998-04-09, 1998-04-11, 1998-04-13, 1998-04-16, 1998-04-18, 1998-04-19
## 50  1997-10-01, 1997-10-03, 1997-10-04, 1997-10-07, 1997-10-10, 1997-10-11, 1997-10-13, 1997-10-15, 1997-10-18, 1997-10-20, 1997-10-22, 1997-10-24, 1997-10-26, 1997-10-31, 1997-11-03, 1997-11-05, 1997-11-07, 1997-11-09, 1997-11-12, 1997-11-13, 1997-11-16, 1997-11-19, 1997-11-21, 1997-11-23, 1997-11-26, 1997-11-28, 1997-11-29, 1997-12-01, 1997-12-03, 1997-12-05, 1997-12-06, 1997-12-10, 1997-12-12, 1997-12-16, 1997-12-18, 1997-12-20, 1997-12-23, 1997-12-26, 1997-12-27, 1997-12-30, 1997-12-31, 1998-01-03, 1998-01-05, 1998-01-06, 1998-01-08, 1998-01-10, 1998-01-12, 1998-01-21, 1998-01-22, 1998-01-24, 1998-01-27, 1998-01-28, 1998-01-30, 1998-02-01, 1998-02-04, 1998-02-07, 1998-02-28, 1998-03-02, 1998-03-05, 1998-03-06, 1998-03-08, 1998-03-12, 1998-03-14, 1998-03-15, 1998-03-18, 1998-03-20, 1998-03-23, 1998-03-26, 1998-03-28, 1998-03-29, 1998-03-31, 1998-04-01, 1998-04-04, 1998-04-06, 1998-04-08, 1998-04-09, 1998-04-11, 1998-04-13, 1998-04-16, 1998-04-18, 1998-04-19, 1998-12-23, 1998-12-26, 1998-12-30, 1999-01-01, 1999-01-02, 1999-01-04, 1999-01-07, 1999-01-09, 1999-01-14, 1999-01-16, 1999-01-18, 1999-01-21, 1999-01-26, 1999-01-28, 1999-01-30, 1999-01-31, 1999-02-03, 1999-02-05, 1999-02-06, 1999-02-10, 1999-02-12, 1999-02-13, 1999-02-15, 1999-02-18, 1999-02-20, 1999-02-21, 1999-02-24, 1999-02-26, 1999-02-27, 1999-03-03, 1999-03-06, 1999-03-08, 1999-03-10, 1999-03-12, 1999-03-15, 1999-03-18, 1999-03-21, 1999-03-22, 1999-03-24, 1999-03-26, 1999-03-28, 1999-03-30, 1999-04-03, 1999-04-06, 1999-04-07, 1999-04-10, 1999-04-14, 1999-04-16, 1999-04-17, 1999-10-02, 1999-10-07, 1999-10-08, 1999-10-11, 1999-10-13, 1999-10-15, 1999-10-20, 1999-10-22, 1999-10-23, 1999-10-29, 1999-10-30, 1999-11-03, 1999-11-05, 1999-11-07, 1999-11-10, 1999-11-11, 1999-11-13, 1999-11-17, 1999-11-19, 1999-11-20, 1999-11-22, 1999-11-24, 1999-11-26, 1999-11-27, 1999-11-30, 1999-12-02, 1999-12-04, 1999-12-07, 1999-12-08, 1999-12-10, 1999-12-15, 1999-12-18, 1999-12-20, 1999-12-22, 1999-12-23, 1999-12-26, 1999-12-28, 2000-01-01, 2000-01-04, 2000-01-06, 2000-01-07, 2000-01-09, 2000-01-11, 2000-01-14, 2000-01-17, 2000-01-18, 2000-01-20, 2000-01-22, 2000-01-24, 2000-01-27, 2000-01-28, 2000-01-30, 2000-02-01, 2000-02-03, 2000-02-08, 2000-02-12, 2000-02-14, 2000-02-15, 2000-02-17, 2000-02-19, 2000-02-21, 2000-02-24, 2000-02-26, 2000-03-01, 2000-03-02, 2000-03-04, 2000-03-08, 2000-03-10, 2000-03-12, 2000-03-15, 2000-03-17, 2000-03-18, 2000-03-21, 2000-03-22, 2000-03-26, 2000-03-27, 2000-03-29, 2000-03-31, 2000-04-02, 2000-04-03, 2000-04-08, 2000-04-09, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1997-10-01, 1997-10-03, 1997-10-04, 1997-10-07, 1997-10-10, 1997-10-11, 1997-10-13, 1997-10-15, 1997-10-18, 1997-10-20, 1997-10-22, 1997-10-24, 1997-10-26, 1997-10-31, 1997-11-03, 1997-11-05, 1997-11-07, 1997-11-09, 1997-11-12, 1997-11-13, 1997-11-16, 1997-11-19, 1997-11-21, 1997-11-23, 1997-11-26, 1997-11-28, 1997-11-29, 1997-12-01, 1997-12-03, 1997-12-05, 1997-12-06, 1997-12-10, 1997-12-12, 1997-12-16, 1997-12-18, 1997-12-20, 1997-12-23, 1997-12-26, 1997-12-27, 1997-12-30, 1997-12-31, 1998-01-03, 1998-01-05, 1998-01-06, 1998-01-08, 1998-01-10, 1998-01-12, 1998-01-14, 1998-01-21, 1998-01-22, 1998-01-24, 1998-01-27, 1998-01-28, 1998-01-30, 1998-02-01, 1998-02-04, 1998-02-07, 1998-02-28, 1998-03-02, 1998-03-05, 1998-03-06, 1998-03-08, 1998-03-12, 1998-03-14, 1998-03-15, 1998-03-18, 1998-03-20, 1998-03-23, 1998-03-26, 1998-03-28, 1998-03-29, 1998-03-31, 1998-04-01, 1998-04-04, 1998-04-06, 1998-04-08, 1998-04-09, 1998-04-11, 1998-04-13, 1998-04-16, 1998-04-18, 1998-04-19, 1998-10-10, 1998-10-13, 1998-10-15, 1998-10-17, 1998-10-20, 1998-10-24, 1998-10-25, 1998-10-28, 1998-10-30, 1998-10-31, 1998-11-02, 1998-11-05, 1998-11-06, 1998-11-08, 1998-11-11, 1998-11-12, 1998-11-14, 1998-11-17, 1998-11-19, 1998-11-20, 1998-11-22, 1998-11-25, 1998-11-28, 1998-11-29, 1998-12-02, 1998-12-04, 1998-12-05, 1998-12-10, 1998-12-12, 1998-12-15, 1998-12-18, 1998-12-19, 1998-12-21, 1998-12-23, 1998-12-26, 1998-12-30, 1999-01-01, 1999-01-02, 1999-01-04, 1999-01-07, 1999-01-09, 1999-01-14, 1999-01-16, 1999-01-18, 1999-01-21, 1999-01-26, 1999-01-28, 1999-01-30, 1999-01-31, 1999-02-03, 1999-02-05, 1999-02-06, 1999-02-10, 1999-02-12, 1999-02-13, 1999-02-15, 1999-02-18, 1999-02-20, 1999-02-21, 1999-02-24, 1999-02-26, 1999-02-27, 1999-03-03, 1999-03-06, 1999-03-08, 1999-03-10, 1999-03-12, 1999-03-15, 1999-03-18, 1999-03-21, 1999-03-22, 1999-03-24, 1999-03-26, 1999-03-28, 1999-03-30, 1999-04-03, 1999-04-06, 1999-04-07, 1999-04-10, 1999-04-14, 1999-04-16, 1999-04-17, 2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2002-10-09, 2002-10-11, 2002-10-12, 2002-10-15, 2002-10-17, 2002-10-19, 2002-10-22, 2002-10-23, 2002-10-26, 2002-10-29, 2002-10-30, 2002-11-01, 2002-11-05, 2002-11-07, 2002-11-09, 2002-11-12, 2002-11-15, 2002-11-17, 2002-11-19, 2002-11-21, 2002-11-23, 2002-11-25, 2002-11-27, 2002-11-29, 2002-11-30, 2002-12-03, 2002-12-04, 2002-12-06, 2002-12-07, 2002-12-11, 2002-12-12, 2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2002-12-27, 2002-12-28, 2002-12-31, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1998-10-10, 1998-10-13, 1998-10-15, 1998-10-17, 1998-10-20, 1998-10-24, 1998-10-25, 1998-10-28, 1998-10-30, 1998-10-31, 1998-11-02, 1998-11-05, 1998-11-06, 1998-11-08, 1998-11-11, 1998-11-12, 1998-11-14, 1998-11-17, 1998-11-19, 1998-11-20, 1998-11-22, 1998-11-25, 1998-11-28, 1998-11-29, 1998-12-02, 1998-12-04, 1998-12-05, 1998-12-10, 1998-12-12, 1998-12-15, 1998-12-18, 1998-12-19, 1998-12-21, 1998-12-23, 1998-12-26, 1998-12-30, 1999-01-01, 1999-01-02, 1999-01-04, 1999-01-07, 1999-01-09, 1999-01-14, 1999-01-16, 1999-01-18, 1999-01-21, 1999-01-26, 1999-01-28, 1999-01-30, 1999-01-31, 1999-02-03, 1999-02-05, 1999-02-06, 1999-02-10, 1999-02-12, 1999-02-13, 1999-02-15, 1999-02-18, 1999-02-20, 1999-02-21, 1999-02-24, 1999-02-26, 1999-02-27, 1999-03-03, 1999-03-06, 1999-03-08, 1999-03-10, 1999-03-12, 1999-03-15, 1999-03-18, 1999-03-21, 1999-03-22, 1999-03-24, 1999-03-26, 1999-03-28, 1999-03-30, 1999-04-03, 1999-04-06, 1999-04-07, 1999-04-10, 1999-04-14, 1999-04-16, 1999-04-17, 1999-10-02, 1999-10-07, 1999-10-08, 1999-10-11, 1999-10-13, 1999-10-15, 1999-10-20, 1999-10-22, 1999-10-23, 1999-10-29, 1999-10-30, 1999-11-03, 1999-11-05, 1999-11-07, 1999-11-10, 1999-11-11, 1999-11-13, 1999-11-17, 1999-11-19, 1999-11-20, 1999-11-22, 1999-11-24, 1999-11-26, 1999-11-27, 1999-11-30, 1999-12-02, 1999-12-04, 1999-12-07, 1999-12-08, 1999-12-10, 1999-12-15, 1999-12-18, 1999-12-20, 1999-12-22, 1999-12-23, 1999-12-26, 1999-12-28, 2000-01-01, 2000-01-04, 2000-01-06, 2000-01-07, 2000-01-09, 2000-01-11, 2000-01-14, 2000-01-17, 2000-01-18, 2000-01-20, 2000-01-22, 2000-01-24, 2000-01-27, 2000-01-28, 2000-01-30, 2000-02-01, 2000-02-03, 2000-02-08, 2000-02-12, 2000-02-14, 2000-02-15, 2000-02-17, 2000-02-19, 2000-02-21, 2000-02-24, 2000-02-26, 2000-03-01, 2000-03-02, 2000-03-04, 2000-03-08, 2000-03-10, 2000-03-12, 2000-03-15, 2000-03-17, 2000-03-18, 2000-03-21, 2000-03-22, 2000-03-26, 2000-03-27, 2000-03-29, 2000-03-31, 2000-04-02, 2000-04-03, 2000-04-08, 2000-04-09, 2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2011-10-07, 2011-10-08, 2011-10-10, 2011-10-12, 2011-10-14, 2011-10-18, 2011-10-21, 2011-10-22, 2011-10-25, 2011-10-28, 2011-10-29, 2011-11-01, 2011-11-04, 2011-11-06, 2011-11-08, 2011-11-11, 2011-11-12, 2011-11-14, 2011-11-16, 2011-11-18, 2011-11-20, 2011-11-21, 2011-11-23, 2011-11-25, 2011-11-27, 2011-11-29, 2011-12-01, 2011-12-03, 2011-12-06, 2011-12-07
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2002-11-05, 2002-11-07, 2002-11-09, 2002-11-12, 2002-11-15, 2002-11-17, 2002-11-19, 2002-11-21, 2002-11-23, 2002-11-25, 2002-11-27, 2002-11-29, 2002-11-30, 2002-12-03, 2002-12-04, 2002-12-06, 2002-12-07, 2002-12-11, 2002-12-12, 2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2008-10-10, 2008-10-11, 2008-10-13, 2008-10-17, 2008-10-19, 2008-10-23, 2008-10-25, 2008-10-28, 2008-10-30, 2008-11-01, 2008-11-02, 2008-11-04, 2008-11-06, 2008-11-07, 2008-11-09, 2008-11-12, 2008-11-14, 2008-11-16, 2008-11-18, 2008-11-21, 2008-11-23, 2008-11-24, 2008-11-26, 2008-11-28, 2008-11-30, 2008-12-04, 2008-12-06, 2008-12-07, 2008-12-11, 2008-12-13, 2008-12-16, 2008-12-18, 2008-12-20, 2008-12-21, 2008-12-23, 2008-12-26, 2008-12-27, 2008-12-31, 2009-01-02, 2009-01-03, 2009-01-06, 2009-01-08, 2009-01-10, 2009-01-13, 2009-01-15, 2009-01-17, 2009-01-19, 2009-01-20, 2009-01-27, 2009-01-29, 2009-01-31, 2009-02-03, 2009-02-05
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2008-11-01, 2008-11-02, 2008-11-04, 2008-11-06, 2008-11-07, 2008-11-09, 2008-11-12, 2008-11-14, 2008-11-16, 2008-11-18, 2008-11-21, 2008-11-23, 2008-11-24, 2008-11-26, 2008-11-28, 2008-11-30, 2008-12-04, 2008-12-06, 2008-12-07, 2008-12-11, 2008-12-13, 2008-12-16, 2008-12-18, 2008-12-20, 2008-12-21, 2008-12-23, 2008-12-26, 2008-12-27, 2008-12-31, 2009-01-02, 2009-01-03, 2009-01-06, 2009-01-08, 2009-01-10, 2009-01-13, 2009-01-15, 2009-01-17, 2009-01-19, 2009-01-20, 2009-01-27, 2009-01-29, 2009-01-31, 2009-02-03, 2009-02-05, 2009-02-07, 2009-02-12, 2009-02-14, 2009-02-15, 2009-02-17, 2009-02-19, 2009-02-20, 2009-02-22, 2009-02-24, 2009-02-26, 2009-02-28, 2009-03-03, 2009-03-06, 2009-03-07, 2009-03-09, 2009-03-11, 2009-03-12, 2009-03-14, 2009-03-18, 2009-03-20, 2009-03-21, 2009-03-23, 2009-03-25, 2009-03-28, 2009-04-02, 2009-04-04, 2009-04-07, 2009-04-09, 2009-04-11
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2005-10-05, 2005-10-07, 2005-10-08, 2005-10-12, 2005-10-15, 2005-10-20, 2005-10-22, 2005-10-24, 2005-10-26, 2005-10-28, 2005-10-29, 2005-11-03, 2005-11-05, 2005-11-09, 2005-11-11, 2005-11-12, 2005-11-15, 2005-11-17, 2005-11-19, 2005-11-20, 2005-11-22, 2005-11-25, 2005-11-27, 2005-11-29, 2005-12-02, 2005-12-03, 2005-12-06, 2005-12-08, 2005-12-10, 2005-12-13, 2005-12-15, 2005-12-17, 2005-12-20, 2005-12-23, 2005-12-26, 2005-12-28, 2005-12-29, 2005-12-31, 2006-01-04, 2006-01-06, 2006-01-07, 2006-01-10, 2006-01-13, 2006-01-15, 2006-01-17, 2006-01-19, 2006-01-21, 2006-01-23, 2006-01-25, 2006-01-26, 2006-01-28, 2006-01-31, 2006-02-03, 2006-02-05, 2006-02-09, 2006-02-10, 2006-02-12, 2006-03-01, 2006-03-03, 2006-03-04, 2006-03-06, 2006-03-08, 2006-03-10, 2006-03-11, 2006-03-14, 2006-03-16, 2006-03-18, 2006-03-21, 2006-03-22, 2006-03-25, 2006-03-27, 2006-03-29, 2006-03-31, 2006-04-01, 2006-04-03, 2006-04-05, 2006-04-07, 2006-04-08, 2006-04-11, 2006-04-14, 2006-04-15, 2006-04-18, 2006-10-04, 2006-10-06, 2006-10-07, 2006-10-11, 2006-10-13, 2006-10-14, 2006-10-16, 2006-10-20, 2006-10-21, 2006-10-25, 2006-10-26, 2006-10-28, 2006-11-01, 2006-11-02, 2006-11-04, 2006-11-07, 2006-11-09, 2006-11-11, 2006-11-13, 2006-11-15, 2006-11-17, 2006-11-18, 2006-11-21, 2006-11-22, 2006-11-24, 2006-11-28, 2006-11-30, 2006-12-02, 2006-12-05, 2006-12-06, 2006-12-08, 2006-12-11, 2006-12-15, 2006-12-16, 2006-12-19, 2006-12-22, 2006-12-23, 2006-12-26, 2006-12-28, 2006-12-29, 2006-12-31, 2007-01-02, 2007-01-04, 2007-01-06, 2007-01-09, 2007-01-11, 2007-01-13, 2007-01-16, 2007-01-18, 2007-01-20, 2007-01-26, 2007-01-27, 2007-01-30, 2007-02-01, 2007-02-03, 2007-02-06, 2007-02-08, 2007-02-10, 2007-02-13, 2007-02-15, 2007-02-17, 2007-02-20, 2007-02-22, 2007-02-24, 2007-02-27, 2007-02-28, 2007-03-02, 2007-03-04, 2007-03-09, 2007-03-11, 2007-03-13, 2007-03-15, 2007-03-17, 2007-03-22, 2007-03-24, 2007-03-27, 2007-03-28, 2007-03-30, 2007-04-01, 2007-04-03, 2007-04-06, 2007-04-07
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2013-10-04, 2013-10-06, 2013-10-08, 2013-10-10, 2013-10-11, 2013-10-13, 2013-10-15, 2013-10-17, 2013-10-19, 2013-10-24, 2013-10-25, 2013-10-28, 2013-11-01, 2013-11-02, 2013-11-05, 2013-11-07, 2013-11-09, 2013-11-12, 2013-11-15, 2013-11-16, 2013-11-18, 2013-11-21, 2013-11-23, 2013-11-24, 2013-11-27, 2013-11-29, 2013-12-01, 2013-12-03, 2013-12-05, 2013-12-06, 2013-12-09, 2013-12-10, 2013-12-12, 2013-12-14, 2013-12-20, 2013-12-21, 2013-12-23, 2013-12-27, 2013-12-29, 2013-12-31, 2014-01-02, 2014-01-04, 2014-01-05, 2014-01-09, 2014-01-10, 2014-01-13, 2014-01-18, 2014-01-19, 2014-01-22, 2014-01-23, 2014-01-25, 2014-01-27, 2014-01-28, 2014-01-31, 2014-02-04, 2014-02-07, 2014-02-08, 2014-02-25, 2014-02-27, 2014-03-01, 2014-03-02, 2014-03-04, 2014-03-07, 2014-03-08, 2014-03-11, 2014-03-13, 2014-03-15, 2014-03-16, 2014-03-18, 2014-03-21, 2014-03-22, 2014-03-25, 2014-03-27, 2014-03-29, 2014-03-31, 2014-04-01, 2014-04-03, 2014-04-05, 2014-04-08, 2014-04-10, 2014-04-11, 2014-04-13
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2002-12-27, 2002-12-28, 2002-12-31, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2007-10-03, 2007-10-05, 2007-10-06, 2007-10-09, 2007-10-11, 2007-10-13, 2007-10-19, 2007-10-20, 2007-10-22, 2007-10-24, 2007-10-26, 2007-10-27, 2007-10-31, 2007-11-03, 2007-11-05, 2007-11-08, 2007-11-10, 2007-11-12, 2007-11-14, 2007-11-16, 2007-11-17, 2007-11-21, 2007-11-23, 2007-11-24, 2007-11-28, 2007-11-30, 2007-12-01, 2007-12-03, 2007-12-06, 2007-12-08, 2007-12-09, 2007-12-12, 2007-12-14, 2007-12-15, 2007-12-18, 2007-12-20, 2007-12-22, 2007-12-26, 2007-12-28, 2007-12-29, 2007-12-31, 2008-01-02, 2008-01-04, 2008-01-05, 2008-01-08, 2008-01-10, 2008-01-12, 2008-01-15, 2008-01-17, 2008-01-18, 2008-01-21, 2008-01-22, 2008-01-29, 2008-01-31, 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2009-10-02, 2009-10-03, 2009-10-06, 2009-10-09, 2009-10-10, 2009-10-14, 2009-10-17, 2009-10-21, 2009-10-23, 2009-10-24, 2009-10-28, 2009-10-31, 2009-11-01, 2009-11-04, 2009-11-06, 2009-11-07, 2009-11-11, 2009-11-13, 2009-11-15, 2009-11-17, 2009-11-19, 2009-11-21, 2009-11-23, 2009-11-25, 2009-11-27, 2009-11-28, 2009-11-30, 2009-12-05, 2009-12-07, 2009-12-09, 2009-12-11, 2009-12-12, 2009-12-16, 2009-12-18, 2009-12-19, 2009-12-21, 2009-12-23, 2009-12-26, 2009-12-28, 2009-12-31, 2010-01-02, 2010-01-07, 2010-01-08, 2010-01-10, 2010-01-12, 2010-01-14, 2010-01-16, 2010-01-18, 2010-01-21, 2010-01-23, 2010-01-24, 2010-01-27, 2010-01-28, 2010-01-30, 2010-02-01, 2010-02-03, 2010-02-05, 2010-02-06, 2010-02-09, 2010-02-11, 2010-02-13, 2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2007-10-03, 2007-10-05, 2007-10-06, 2007-10-09, 2007-10-11, 2007-10-13, 2007-10-19, 2007-10-20, 2007-10-22, 2007-10-24, 2007-10-26, 2007-10-27, 2007-10-31, 2007-11-03, 2007-11-05, 2007-11-08, 2007-11-10, 2007-11-12, 2007-11-14, 2007-11-16, 2007-11-17, 2007-11-21, 2007-11-23, 2007-11-24, 2007-11-28, 2007-11-30, 2007-12-01, 2007-12-03, 2007-12-06, 2007-12-08, 2007-12-09, 2007-12-12, 2007-12-14, 2007-12-15, 2007-12-18, 2007-12-20, 2007-12-22, 2007-12-26, 2007-12-28, 2007-12-29, 2007-12-31, 2008-01-02, 2008-01-04, 2008-01-05, 2008-01-08, 2008-01-10, 2008-01-12, 2008-01-15, 2008-01-17, 2008-01-18, 2008-01-21, 2008-01-22, 2008-01-29, 2008-01-31, 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04, 2008-10-10, 2008-10-11, 2008-10-13, 2008-10-17, 2008-10-19, 2008-10-23, 2008-10-25, 2008-10-28, 2008-10-30, 2008-11-01, 2008-11-02, 2008-11-04, 2008-11-06, 2008-11-07, 2008-11-09, 2008-11-12, 2008-11-14, 2008-11-16, 2008-11-18, 2008-11-21, 2008-11-23, 2008-11-24, 2008-11-26, 2008-11-28, 2008-11-30, 2008-12-04, 2008-12-06, 2008-12-07, 2008-12-11, 2008-12-13, 2008-12-16, 2008-12-18, 2008-12-20, 2008-12-21, 2008-12-23, 2008-12-26, 2008-12-27, 2008-12-31, 2009-01-02, 2009-01-03, 2009-01-06, 2009-01-08, 2009-01-10, 2009-01-13, 2009-01-15, 2009-01-17, 2009-01-19, 2009-01-20, 2009-01-27, 2009-01-29, 2009-01-31, 2009-02-03, 2009-02-05, 2009-02-07, 2009-02-12, 2009-02-14, 2009-02-15, 2009-02-17, 2009-02-19, 2009-02-20, 2009-02-22, 2009-02-24, 2009-02-26, 2009-02-28, 2009-03-03, 2009-03-06, 2009-03-07, 2009-03-09, 2009-03-11, 2009-03-12, 2009-03-14, 2009-03-18, 2009-03-20, 2009-03-21, 2009-03-23, 2009-03-25, 2009-03-28, 2009-04-02, 2009-04-04, 2009-04-07, 2009-04-09, 2009-04-11, 2009-10-02, 2009-10-03, 2009-10-06, 2009-10-09, 2009-10-10, 2009-10-14, 2009-10-17, 2009-10-21, 2009-10-23, 2009-10-24, 2009-10-28, 2009-10-31, 2009-11-01, 2009-11-04, 2009-11-06, 2009-11-07, 2009-11-11, 2009-11-13, 2009-11-15, 2009-11-17, 2009-11-19, 2009-11-21, 2009-11-23, 2009-11-25, 2009-11-27, 2009-11-28, 2009-11-30, 2009-12-05, 2009-12-07, 2009-12-09, 2009-12-11, 2009-12-12, 2009-12-16, 2009-12-18, 2009-12-19, 2009-12-21, 2009-12-23, 2009-12-26, 2009-12-28, 2009-12-31, 2010-01-02, 2010-01-07, 2010-01-08, 2010-01-10, 2010-01-12, 2010-01-14, 2010-01-16, 2010-01-18, 2010-01-21, 2010-01-23, 2010-01-24, 2010-01-27, 2010-01-28, 2010-01-30, 2010-02-01, 2010-02-03, 2010-02-05, 2010-02-06, 2010-02-09, 2010-02-11, 2010-02-13, 2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2007-10-03, 2007-10-05, 2007-10-06, 2007-10-09, 2007-10-11, 2007-10-13, 2007-10-19, 2007-10-20, 2007-10-22, 2007-10-24, 2007-10-26, 2007-10-27, 2007-10-31, 2007-11-03, 2007-11-05, 2007-11-08, 2007-11-10, 2007-11-12, 2007-11-14, 2007-11-16, 2007-11-17, 2007-11-21, 2007-11-23, 2007-11-24, 2007-11-28, 2007-11-30, 2007-12-01, 2007-12-03, 2007-12-06, 2007-12-08, 2007-12-09, 2007-12-12, 2007-12-14, 2007-12-15, 2007-12-18, 2007-12-20, 2007-12-22, 2007-12-26, 2007-12-28, 2007-12-29, 2007-12-31, 2008-01-02, 2008-01-04, 2008-01-05, 2008-01-08, 2008-01-10, 2008-01-12, 2008-01-15, 2008-01-17, 2008-01-18, 2008-01-21, 2008-01-22, 2008-01-29, 2008-01-31, 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2010-11-19, 2010-11-20, 2010-11-24, 2010-11-26, 2010-11-28, 2010-11-29, 2010-12-03, 2010-12-04, 2010-12-10, 2010-12-11, 2010-12-15, 2010-12-16, 2010-12-18, 2010-12-20, 2010-12-23, 2010-12-26, 2010-12-28, 2010-12-29, 2011-01-01, 2011-01-03, 2011-01-05, 2011-01-07, 2011-01-09, 2011-01-11, 2011-01-13, 2011-01-15, 2011-01-17, 2011-01-18, 2011-01-20, 2011-01-22, 2011-01-24, 2011-01-26, 2011-02-01, 2011-02-03, 2011-02-05, 2011-02-08, 2011-02-10, 2011-02-12, 2011-02-13, 2011-02-16
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2005-10-05, 2005-10-07, 2005-10-08, 2005-10-12, 2005-10-15, 2005-10-20, 2005-10-22, 2005-10-24, 2005-10-26, 2005-10-28, 2005-10-29, 2005-11-03, 2005-11-05, 2005-11-09, 2005-11-11, 2005-11-12, 2005-11-15, 2005-11-17, 2005-11-19, 2005-11-20, 2005-11-22, 2005-11-25, 2005-11-27, 2005-11-29, 2005-12-02, 2005-12-03, 2005-12-06, 2005-12-08, 2005-12-10, 2005-12-13, 2005-12-15, 2005-12-17, 2005-12-20, 2005-12-23, 2005-12-26, 2005-12-28, 2005-12-29, 2005-12-31, 2006-01-04, 2006-01-06, 2006-01-07, 2006-01-10, 2006-01-13, 2006-01-15, 2006-01-17, 2006-01-19
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2008-10-10, 2008-10-11, 2008-10-13, 2008-10-17, 2008-10-19, 2008-10-23, 2008-10-25, 2008-10-28, 2008-10-30, 2008-11-01, 2008-11-02, 2008-11-04, 2008-11-06, 2008-11-07, 2008-11-09, 2008-11-12, 2008-11-14, 2008-11-16, 2008-11-18, 2008-11-21, 2008-11-23, 2008-11-24, 2008-11-26, 2008-11-28, 2008-11-30, 2008-12-04, 2008-12-06, 2008-12-07, 2008-12-11, 2008-12-13, 2008-12-16, 2008-12-18, 2008-12-20, 2008-12-21, 2008-12-23, 2008-12-26, 2008-12-27, 2008-12-31, 2009-01-02, 2009-01-03, 2009-01-06, 2009-01-08, 2009-01-10, 2009-01-13, 2009-01-15, 2009-01-17, 2009-01-19, 2009-01-20, 2009-01-27, 2009-01-29, 2009-01-31, 2009-02-03, 2009-02-05, 2009-02-07, 2009-02-12, 2009-02-14, 2009-02-15, 2009-02-17, 2009-02-19, 2009-02-20, 2009-02-22, 2009-02-24, 2009-02-26, 2009-02-28, 2009-03-03, 2009-03-06, 2009-03-07, 2009-03-09, 2009-03-11, 2009-03-12, 2009-03-14, 2009-03-18, 2009-03-20, 2009-03-21, 2009-03-23, 2009-03-25, 2009-03-28, 2009-04-02, 2009-04-04, 2009-04-07, 2009-04-09, 2009-04-11
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2010-11-24, 2010-11-26, 2010-11-28, 2010-11-29, 2010-12-03, 2010-12-04, 2010-12-10, 2010-12-11, 2010-12-15, 2010-12-16, 2010-12-18, 2010-12-20, 2010-12-23, 2010-12-26, 2010-12-28, 2010-12-29, 2011-01-01, 2011-01-03, 2011-01-05, 2011-01-07, 2011-01-09, 2011-01-11, 2011-01-13, 2011-01-15, 2011-01-17, 2011-01-18, 2011-01-20, 2011-01-22, 2011-01-24, 2011-01-26, 2011-02-01, 2011-02-03, 2011-02-05, 2011-02-08, 2011-02-10, 2011-02-12, 2011-02-13, 2011-02-16, 2011-02-18, 2011-02-19, 2011-02-22, 2011-03-03, 2011-03-04, 2011-03-09, 2011-03-11
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2013-10-04, 2013-10-06, 2013-10-08, 2013-10-10, 2013-10-11, 2013-10-13, 2013-10-15, 2013-10-17, 2013-10-19, 2013-10-24, 2013-10-25, 2013-10-28, 2013-11-01, 2013-11-02, 2013-11-05, 2013-11-07, 2013-11-09, 2013-11-12, 2013-11-15, 2013-11-16, 2013-11-18, 2013-11-21, 2013-11-23, 2013-11-24, 2013-11-27, 2013-11-29, 2013-12-01, 2013-12-03, 2013-12-05, 2013-12-06, 2013-12-09, 2013-12-10, 2013-12-12, 2013-12-14, 2013-12-20, 2013-12-21, 2013-12-23, 2013-12-27, 2013-12-29, 2013-12-31, 2014-01-02, 2014-01-04, 2014-01-05, 2014-01-09, 2014-01-10, 2014-01-13, 2014-01-18, 2014-01-19, 2014-01-22, 2014-01-23, 2014-01-25, 2014-01-27, 2014-01-28, 2014-01-31, 2014-02-04, 2014-02-07, 2014-02-08, 2014-02-25, 2014-02-27, 2014-03-01, 2014-03-02, 2014-03-04, 2014-03-07, 2014-03-08, 2014-03-11, 2014-03-13, 2014-03-15, 2014-03-16, 2014-03-18, 2014-03-21, 2014-03-22, 2014-03-25, 2014-03-27, 2014-03-29, 2014-03-31, 2014-04-01, 2014-04-03, 2014-04-05, 2014-04-08, 2014-04-10, 2014-04-11, 2014-04-13
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2012-04-07, 2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09, 2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09, 2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2018-04-07, 2018-10-26, 2018-10-28, 2018-10-30, 2018-11-02, 2018-11-03, 2018-11-06, 2018-11-08, 2018-11-10, 2018-11-12, 2018-11-17, 2018-11-18, 2018-11-21, 2018-11-23, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-10-11, 2019-10-12, 2019-10-15, 2019-10-16, 2019-10-18, 2019-10-24, 2019-10-26, 2019-10-29, 2019-11-01, 2019-11-02, 2019-11-05, 2019-11-07, 2019-11-09, 2019-11-11, 2019-11-14, 2019-11-16, 2019-11-19, 2019-11-21, 2019-11-23, 2019-11-24, 2019-11-27, 2019-11-29, 2019-11-30, 2019-12-03, 2019-12-05, 2019-12-07, 2019-12-10, 2019-12-12, 2019-12-14, 2019-12-17, 2019-12-19, 2019-12-21, 2019-12-23, 2019-12-27, 2019-12-28, 2019-12-31, 2020-01-03, 2020-01-05, 2020-01-07, 2020-01-10, 2020-01-11, 2020-01-13, 2020-01-16, 2020-01-17, 2020-01-19, 2020-01-21, 2020-01-31, 2020-02-02, 2020-02-04, 2020-02-06, 2020-02-08, 2020-02-11, 2020-02-14, 2020-02-16, 2020-02-18
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-10-15, 2019-10-16, 2019-10-18, 2019-10-24, 2019-10-26, 2019-10-29, 2019-11-01, 2019-11-02, 2019-11-05, 2019-11-07, 2019-11-09, 2019-11-11, 2019-11-14, 2019-11-16, 2019-11-19, 2019-11-21, 2019-11-23, 2019-11-24, 2019-11-27, 2019-11-29, 2019-11-30, 2019-12-03, 2019-12-05, 2019-12-07, 2019-12-10, 2019-12-12, 2019-12-14, 2019-12-17, 2019-12-19, 2019-12-21, 2019-12-23, 2019-12-27, 2019-12-28, 2019-12-31, 2020-01-03, 2020-01-05, 2020-01-07, 2020-01-10, 2020-01-11, 2020-01-13, 2020-01-16, 2020-01-17, 2020-01-19, 2020-01-21, 2020-01-31, 2020-02-02, 2020-02-04, 2020-02-06, 2020-02-08, 2020-02-11, 2020-02-14, 2020-02-16, 2020-02-18, 2020-02-21, 2020-02-22, 2020-02-25, 2020-02-28, 2020-02-29, 2020-03-05, 2020-03-07, 2020-03-08, 2020-03-10
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-11-07, 2019-11-09, 2019-11-11, 2019-11-14, 2019-11-16, 2019-11-19, 2019-11-21, 2019-11-23, 2019-11-24, 2019-11-27, 2019-11-29, 2019-11-30, 2019-12-03, 2019-12-05, 2019-12-07, 2019-12-10, 2019-12-12, 2019-12-14, 2019-12-17, 2019-12-19, 2019-12-21, 2019-12-23, 2019-12-27, 2019-12-28, 2019-12-31, 2020-01-03, 2020-01-05, 2020-01-07, 2020-01-10, 2020-01-11, 2020-01-13, 2020-01-16, 2020-01-17, 2020-01-19, 2020-01-21, 2020-01-31, 2020-02-02, 2020-02-04, 2020-02-06, 2020-02-08, 2020-02-11, 2020-02-14, 2020-02-16, 2020-02-18, 2020-02-21, 2020-02-22, 2020-02-25, 2020-02-28, 2020-02-29, 2020-03-05, 2020-03-07, 2020-03-08, 2020-03-10
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-01-28, 2021-01-30, 2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-05-10
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-02-24
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-02-18, 1981-10-29
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-04-08, 1996-12-11
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-04-06
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-02-09
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-11-18
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-12-19
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-01-16, 1992-12-16
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-12, 1996-10-08
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-12-26
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-01-25
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-12-18
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-02-14
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-11-12
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-12-28
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-12-04
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-03-15, 1981-11-25
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-12-19
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-04-02
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-12-06
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-01-14, 1983-02-09
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1991-02-20
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-01-17
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1994-03-09
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-02-28
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1994-03-04
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2007-04-06
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-12-06
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-04-05
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2002-04-12, 2003-04-02
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2012-02-28
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2004-03-27
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2004-04-04
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-03-18
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-03-11
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-02-16, 2008-11-16
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-11-02
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-10-17
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-03-19
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-03-09
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-03-25
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-10-28
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-01-04
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2014-01-04
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-02-11
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-12-12
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-03-31
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-11-08
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-12-07
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-02-27
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-12-23, 1980-10-15, 1980-10-25
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-10-24, 1987-01-10
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-11-30, 1986-01-27, 1986-10-12
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-03-27
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-10-07, 1995-11-24, 1997-02-21
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-03-25, 1995-12-15, 1996-01-09, 1996-11-12, 1996-11-16
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-01-11, 1983-02-05
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-26, 1980-03-12
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-11-04, 1982-11-07
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-06, 1980-03-12
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-02-22
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-02-05, 1984-02-16, 1984-12-26
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-10-30, 1991-11-01
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-11-18, 1994-04-02
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-02-12, 1980-02-26
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-02-11, 1992-02-16
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-10-28, 1984-11-30
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-10-05, 2001-12-22
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-01-25, 1997-02-05
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-10-10, 2008-10-17
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-03-06, 2003-03-13
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-02-26, 2003-04-02, 2005-11-09
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-12-07, 2010-02-01
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-01-10, 2010-03-18
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2011-04-06, 2011-12-01, 2012-03-30
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-11-03
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-02-24, 2013-04-09
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-04-27
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2013-11-21, 2014-02-07, 2015-02-27, 2015-04-09
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2012-01-10, 2012-02-23
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-02-16, 2015-02-28, 2016-02-21
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-11-08, 2017-04-08, 2018-04-05
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-04-26, 2021-04-27
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-03-02, 2021-04-20
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-04-17, 2021-04-26
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-10-13, 1979-10-19, 1979-11-17
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-12-30, 1982-01-11, 1982-02-22
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-10-13, 1984-10-17, 1985-01-12
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1994-01-08, 1994-02-01, 1994-02-16, 1996-10-05
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-11-16, 1997-01-06, 1997-10-13, 1997-12-06, 1998-03-23
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-02-16, 1997-02-21, 1997-10-22, 1998-01-22, 1998-02-07
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-11-02, 1979-11-06, 1980-01-17
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-19, 1992-01-11, 1992-01-31, 1992-03-24, 1992-12-16, 1993-04-10
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1988-10-22, 1989-02-21, 1989-04-01, 1989-12-19, 1990-01-06, 1990-03-03, 1991-02-28
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-04-03
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-03-01, 1985-12-26, 1986-03-26, 1986-10-24, 1987-01-12, 1987-02-01, 1987-10-31, 1987-12-02, 1987-12-09
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-01-28, 1992-02-09, 1992-10-28, 1993-01-30, 1993-02-03
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-04-02, 1995-02-01, 1995-02-15, 1995-03-22, 1995-11-15, 1995-11-29
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-10-17, 1979-10-24, 1979-11-27
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1987-01-15, 1987-02-17, 1988-03-02, 1988-11-16, 1989-02-19, 1989-11-03, 1990-01-17, 1990-02-18, 1990-12-20, 1992-02-27, 1992-11-11, 1993-01-09
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-12-09, 1993-01-21, 1993-01-24
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1988-12-26, 1989-02-18, 1989-02-26
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-11-27, 1993-11-29, 1994-01-02
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-12-15, 1996-01-25, 1996-02-11, 1996-04-08
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1990-11-29, 1991-11-01, 1991-11-02, 1992-02-22
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-11-17, 1979-11-25, 1979-12-11
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-12-07, 1981-11-28, 1982-11-13, 1982-11-26, 1983-03-12
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-11-08, 1983-12-08, 1983-12-21
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-11-22, 1995-12-20, 1996-04-08
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1994-03-26, 1995-02-11, 1995-03-26, 1995-04-21
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-02-06, 1994-02-27, 1994-03-09, 1995-04-05, 1995-11-20, 1996-01-12
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1998-11-29, 1999-12-26, 1999-12-28, 2000-02-15
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-10-20, 2006-01-17, 2006-03-01
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-03-10
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-01-17, 2003-01-25, 2003-01-30
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2002-03-28, 2002-04-03, 2002-10-15, 2002-10-29, 2003-02-07, 2004-03-13, 2004-03-27, 2004-03-29
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-12-20, 2006-01-04, 2006-01-13, 2006-10-11, 2006-10-14, 2006-10-25
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-02-26, 2003-03-18, 2003-03-25
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2011-12-21, 2011-12-23, 2012-02-20
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-01-01, 2011-01-03, 2011-01-09, 2011-12-29, 2013-04-06
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2014-03-18, 2014-03-25, 2014-03-29
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-03-22
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-10-26
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-12-12, 2018-03-18, 2018-04-02, 2018-11-21, 2018-11-27, 2019-03-24, 2020-02-16
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-03-22, 2021-04-19, 2021-04-29
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2020-03-08, 2021-03-11
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-02-20, 2021-03-25, 2021-03-27
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1991-11-17, 1992-02-04, 1992-02-27, 1992-03-24
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-02-04, 1985-02-03, 1985-02-09, 1985-02-19, 1985-03-29
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1990-11-17, 1990-12-05, 1990-12-29, 1991-02-06
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1999-10-02, 1999-10-20, 2000-02-08, 2000-12-31, 2001-11-11, 2001-11-19, 2001-12-16, 2002-03-11
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-03-24, 1993-10-10, 1993-10-19, 1993-11-10, 1993-12-28
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2001-01-03, 2001-02-01, 2001-02-14, 2001-03-04
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-02-20
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1997-10-10, 1997-10-26, 1997-11-03, 1997-11-16
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-11-09, 1996-11-12, 1997-01-01, 1997-01-25, 1997-11-09, 1997-12-27, 1998-11-05, 1999-02-12
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-03-01
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-10-10
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1987-11-04, 1987-11-16, 1988-11-23, 1989-02-09, 1989-02-11, 1989-03-30
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-03-27, 2006-03-31, 2006-04-05, 2006-04-11
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-12-17
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-03-25, 1990-02-01, 1990-03-24, 1990-03-25, 1990-12-30, 1991-01-08, 1991-02-16, 1991-03-30, 1991-10-05, 1991-11-12, 1991-11-14
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-01-14, 1981-01-21, 1981-12-27, 1982-10-30, 1982-12-04, 1982-12-08, 1983-03-08
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2006-03-14
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2000-02-14, 2000-11-26, 2000-12-06, 2001-01-20, 2001-03-24
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2009-11-19, 2009-11-27, 2010-01-28, 2010-02-11
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-04-05
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2013-10-04, 2013-10-06, 2013-11-07, 2014-04-10
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-10-25, 2003-11-08, 2003-12-06, 2004-01-06
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-12, 2005-11-19, 2005-12-02, 2006-01-31
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-10-25
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-12-29
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-10-17, 2013-11-09, 2015-01-30, 2015-03-21, 2015-03-26, 2015-04-09
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-10-18, 2019-11-11, 2020-02-08, 2020-02-29, 2021-04-03
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-01-15
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2019-10-05, 2019-12-05, 2020-01-07, 2020-03-08
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-01-09, 1981-01-10, 1981-01-24, 1981-01-30, 1981-02-08
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-02-03, 1988-02-13, 1988-03-08, 1988-03-20, 1988-03-26
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-10-30, 1983-11-15, 1983-12-08, 1983-12-10, 1984-03-04, 1985-01-08
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-11-28, 1980-12-10, 1983-01-01, 1983-01-11, 1983-02-23, 1983-02-25, 1983-04-03
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-10-26, 1982-12-03, 1982-12-18, 1983-01-27, 1983-04-02
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-02-09
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-10-12, 1985-10-15, 1985-11-09, 1985-11-13, 1985-11-27
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-03-01
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-12-09
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1999-11-05, 1999-12-26, 2000-01-28, 2000-02-01, 2000-10-10, 2000-12-06, 2001-01-09, 2001-03-30, 2001-04-08
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-12-15, 2012-02-13, 2012-02-18, 2012-03-07, 2012-03-10
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2004-01-15, 2004-01-31, 2004-02-03, 2004-02-12, 2004-02-16
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-02-04
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-02-18, 2003-03-04, 2003-03-07, 2003-04-06, 2003-11-06, 2003-11-12, 2004-03-30, 2006-10-25, 2008-02-14, 2008-02-21, 2008-03-05, 2008-10-17, 2008-10-19, 2008-11-04, 2009-01-27, 2009-02-22
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-11-19
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-01-13, 2008-11-04, 2008-11-07, 2009-02-14, 2009-02-19, 2009-04-07
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-01-10, 2008-01-12, 2008-02-09, 2008-02-21, 2008-03-08
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-01-14
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2000-10-13, 2000-10-18, 2000-11-22, 2000-12-27, 2001-01-09, 2001-02-11
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-10-11, 1989-12-20, 1989-12-26, 1990-02-14, 1990-02-18, 1990-02-23, 1990-12-12, 1991-01-05, 1992-02-29
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-04-02
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1994-03-19, 1994-04-14, 1995-04-28
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-10-17
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-03-18
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-11-08, 1984-01-07, 1984-01-08, 1984-01-24, 1984-03-27, 1984-10-17, 1985-01-05, 1985-01-12, 1985-01-22, 1985-01-31, 1985-02-19, 1985-11-09, 1985-11-23, 1985-12-07, 1986-01-25, 1986-02-19, 1986-10-11, 1986-11-05, 1986-12-13, 1988-03-15, 1988-11-10, 1988-12-23, 1989-01-18, 1989-02-28, 1990-02-21
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-10-09, 1993-12-12, 1993-12-18, 1993-12-22, 1993-12-23, 1994-01-02
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1987-10-17, 1987-10-31, 1987-12-05, 1988-01-16, 1988-01-21, 1988-01-23
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-02-01
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-03-12
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-03-08, 2006-03-01
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-11-29, 1993-12-04, 1993-12-12, 1993-12-26, 1994-01-05, 1994-02-12
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1994-03-25
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-10-19, 1999-02-06, 1999-03-30, 1999-12-22, 1999-12-23, 2000-01-24, 2000-03-29, 2000-10-29, 2001-01-22, 2001-01-29, 2001-01-31, 2001-02-18, 2001-03-23, 2001-11-19, 2002-01-12, 2002-02-28, 2002-03-02
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2004-04-02
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2005-10-24, 2005-10-26, 2005-11-09, 2005-11-29, 2005-12-03, 2006-01-13, 2007-02-06, 2007-03-02, 2009-04-07
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-09, 2014-04-03, 2014-11-22, 2015-03-02, 2015-12-19, 2016-01-06, 2016-01-09, 2016-01-15, 2016-01-26, 2016-02-25
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-03-03
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-04-06, 2011-12-15, 2012-03-17
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-01-04, 2019-01-08, 2019-01-23, 2019-02-07, 2019-03-02, 2019-03-08
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-02-22
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-11-12, 1991-12-01, 1992-01-15, 1992-01-25, 1992-01-26, 1992-02-16, 1992-02-27
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-01-16, 1996-01-17, 1996-01-25, 1996-01-27, 1996-03-08, 1996-03-13, 1996-03-18, 1997-10-20, 1997-11-03, 1997-12-10
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1997-03-07, 1997-03-15, 1997-04-07, 1997-10-31, 1997-11-13, 1997-11-29, 1997-12-18, 1997-12-26, 1997-12-27, 1998-01-24, 1998-10-10
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-10-08, 1983-10-25, 1983-11-02, 1983-11-06, 1983-11-23, 1983-12-04, 1983-12-15
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-02-10, 1985-02-23, 1985-03-01, 1985-03-13, 1985-03-16, 1985-03-20, 1985-03-24
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-01-09, 1988-12-03, 1988-12-06, 1988-12-08, 1988-12-15, 1988-12-21, 1989-02-23, 1989-03-23, 1989-12-14
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-03-15
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1992-12-21, 1993-01-13, 1993-01-21, 1993-02-12, 1993-03-13, 1993-03-19, 1993-04-11, 1993-11-01
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2002-01-19, 2002-04-12, 2002-11-12, 2002-11-27, 2003-02-11, 2003-11-26, 2003-12-29, 2004-01-29, 2004-03-12, 2004-03-19, 2004-03-20, 2004-03-23, 2005-10-12, 2005-11-25, 2005-12-06, 2006-01-23, 2006-01-26, 2007-10-03, 2007-10-24
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2014-01-25
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-11-21
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2007-04-07
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2005-11-15, 2006-03-14, 2006-03-21, 2006-10-14, 2006-10-20, 2006-12-08, 2006-12-15, 2007-02-24, 2007-03-22, 2007-03-30, 2007-12-28, 2008-01-21, 2008-01-22
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2015-02-28
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2008-10-10, 2008-12-11, 2008-12-20, 2009-01-03, 2009-02-03, 2009-02-22, 2009-03-21, 2009-10-24, 2009-12-31, 2010-02-06, 2010-02-09, 2010-03-07, 2010-03-20, 2010-10-19, 2010-11-20, 2011-03-18, 2011-03-30, 2011-04-08, 2011-10-12, 2011-10-18, 2011-11-08, 2012-03-21, 2012-04-07, 2013-02-02
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2015-01-02, 2015-01-17, 2015-01-19, 2015-01-31, 2015-02-03, 2015-02-28, 2015-03-15, 2015-11-20, 2015-12-03
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-12-08, 2015-12-12, 2015-12-31, 2016-02-05, 2016-03-10, 2016-03-12, 2016-03-17, 2016-12-04, 2018-02-09, 2018-03-06, 2018-03-22, 2018-03-24, 2018-03-27, 2018-11-08
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2015-11-22, 2015-11-23, 2015-12-26, 2016-01-14, 2016-12-07, 2017-01-14, 2018-02-01, 2018-02-09, 2018-02-15, 2018-10-09, 2018-10-13, 2018-12-07, 2019-02-01, 2019-02-05, 2019-03-02, 2019-03-23, 2019-10-06, 2019-10-11, 2019-11-23, 2019-12-27, 2021-02-07, 2021-02-25, 2021-03-01, 2021-04-24
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-11-11, 2019-11-16, 2019-12-07, 2020-01-07, 2020-02-14, 2020-02-29, 2020-03-07
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-12-06
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-01-21
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-12-05
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-12-28, 1983-01-01, 1983-02-01, 1983-02-05, 1983-02-09, 1983-02-25, 1983-03-27, 1983-03-29
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-03-29
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-11-03
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-10-11, 1979-11-09, 1979-12-07, 1980-01-09, 1980-01-19, 1980-02-16, 1980-02-19, 1980-02-29, 1980-10-11, 1980-10-25
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1990-11-29
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-11-18, 1997-12-01
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-10-11, 2006-10-16, 2006-10-20, 2006-11-11, 2006-11-24, 2006-11-30, 2006-12-22, 2007-01-09
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-10-09, 2009-11-25, 2010-01-02, 2010-01-07, 2010-01-10, 2010-01-14, 2010-02-05, 2010-03-04, 2010-11-13
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-11-14
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-03-30, 2011-12-03
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-03-13
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-10-08
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-02-29
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-08, 1995-04-12
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-12-16, 1989-12-19, 1989-12-26, 1990-01-10, 1990-01-13, 1990-01-25, 1990-02-14, 1990-02-18, 1990-03-24, 1990-10-08, 1990-10-10, 1990-10-12, 1990-10-13, 1990-10-31, 1990-11-10, 1991-02-28, 1991-03-02, 1991-03-05, 1991-10-12, 1991-10-30, 1991-11-27, 1991-11-30, 1991-12-01, 1991-12-13, 1992-03-21, 1992-10-17, 1992-10-22, 1992-12-05, 1993-04-03, 1993-04-05, 1993-10-20, 1993-11-29, 1993-12-01, 1993-12-18, 1993-12-22, 1993-12-29, 1994-01-02, 1994-01-08, 1994-02-04
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-12-20, 1981-01-17, 1981-01-24, 1981-01-28, 1981-01-30, 1981-02-12, 1981-03-18, 1981-03-27, 1981-04-05
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1987-03-21
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-10-29, 1986-01-17, 1986-02-11, 1986-10-24, 1986-11-01, 1986-12-03, 1986-12-06, 1986-12-14, 1987-01-07, 1987-01-15, 1987-01-29, 1987-02-17, 1987-11-04
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-02-06, 1985-02-17, 1985-12-16, 1986-01-17, 1986-03-15, 1986-03-23, 1986-04-01, 1987-01-04, 1987-02-18, 1987-12-05, 1987-12-20, 1988-01-16, 1988-01-23, 1988-02-17, 1988-02-23, 1988-03-05, 1988-03-08, 1988-10-15, 1988-10-22, 1988-11-03, 1988-11-12, 1988-11-19, 1989-01-31, 1989-03-02, 1989-03-08, 1989-03-30, 1990-01-27, 1990-03-11, 1990-10-10, 1990-12-13, 1991-02-23
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-10-15, 1981-10-29, 1981-11-07, 1981-12-06, 1981-12-19, 1982-02-19, 1982-03-07, 1982-03-18, 1982-03-21
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2002-11-29
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-11-09, 2006-11-22, 2007-10-19, 2007-11-03, 2007-12-15, 2008-01-29, 2008-02-16, 2008-03-19, 2008-03-20, 2008-03-28, 2008-04-04
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2012-01-07
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-03-28
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2012-03-03
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-11-29
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-02-05
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-10-23
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-11-11, 1979-11-30, 1980-01-02, 1980-01-06, 1980-01-19, 1980-01-30, 1980-02-02, 1980-03-01, 1980-03-22, 1980-04-04, 1980-10-29, 1980-11-08, 1980-11-16, 1980-12-13
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-09, 1991-03-14, 1991-03-16, 1991-03-30, 1991-10-08, 1991-11-01, 1991-11-02, 1991-11-06, 1991-11-16, 1991-12-13, 1991-12-19, 1992-02-01, 1992-03-05, 1992-04-12
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-01-04
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-10-16, 1996-02-28, 1996-11-06, 1999-02-13, 2000-01-06
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-03-10, 2003-11-06, 2005-12-13, 2006-10-13
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-03-12, 2016-01-26
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-12-05, 2015-12-26, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-19, 2016-02-21, 2016-02-23, 2016-03-01, 2016-03-22, 2016-11-15, 2016-12-10, 2016-12-17, 2017-03-13, 2017-03-14, 2017-03-28, 2017-04-08, 2017-10-07, 2017-11-18
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-11-16, 2016-02-13, 2016-02-26, 2016-04-07, 2016-11-20, 2016-12-01, 2017-03-01, 2017-03-30, 2017-10-07, 2017-11-16, 2017-11-24, 2017-11-28, 2017-12-02, 2017-12-16, 2017-12-21, 2018-02-24, 2018-03-24, 2018-03-27
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-01-23, 1986-01-25, 1986-02-02, 1986-02-08, 1986-02-09, 1986-02-11, 1986-02-19, 1986-02-22, 1986-03-08, 1986-04-05, 1986-04-06
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2000-04-09
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-04-07
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-03-24, 2008-02-12
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-11-21
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2016-01-24
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2013-03-09, 2014-10-10, 2014-10-14, 2014-10-16, 2014-11-02, 2014-12-18, 2014-12-20, 2015-02-16, 2015-03-12, 2015-03-28, 2015-04-02, 2015-04-07, 2015-10-16, 2015-10-29, 2015-11-30, 2016-01-08, 2016-02-19, 2016-03-19, 2016-03-22, 2016-03-24
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-01-20
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-03-24, 1990-03-27, 1992-04-12
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-11-15, 1991-01-23
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-03-25
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1992-10-10, 1992-11-03, 1992-11-18, 1992-11-21, 1992-12-09, 1993-01-18, 1993-01-23, 1993-01-27, 1993-03-03, 1993-03-19, 1993-03-22, 1993-04-14, 1994-01-05, 1994-02-02, 1995-02-04, 1995-03-26, 1995-12-23, 1996-01-05, 1996-10-31, 1997-01-04
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1994-03-19
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2001-03-04
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-11-29
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2011-10-14, 2011-10-28, 2011-12-06, 2011-12-27, 2012-01-12, 2012-01-23, 2012-01-31, 2012-02-10, 2012-02-28, 2012-03-13, 2012-03-17, 2012-03-27
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2019-12-23
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-03-04
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-11-18, 1979-11-24, 1979-11-30, 1979-12-26, 1980-01-17, 1980-01-21, 1980-01-26, 1980-02-16, 1980-02-18, 1980-03-15, 1980-03-22, 1980-03-28, 1980-04-04
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-11-11
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-02-22, 1982-02-24
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-30, 1980-04-04
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2000-03-21, 2003-12-27, 2004-03-13
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-10-07, 2019-12-14, 2019-12-28, 2020-02-22, 2021-04-01
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1987-11-27
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-03-10
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-04-04, 1996-02-07, 1996-03-08
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-03-16
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-11-02, 1979-11-11
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-02-25, 1986-01-18
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1999-03-08, 1999-03-12, 1999-03-18, 1999-03-24, 1999-04-10, 1999-04-16, 1999-10-20, 1999-10-29, 1999-11-07, 1999-11-13, 1999-11-30, 1999-12-23, 2000-01-07, 2000-01-09, 2000-01-11, 2000-01-27, 2000-02-01, 2000-02-08, 2000-03-04, 2000-03-17, 2000-03-29
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-11-17, 2005-12-06
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-12-08, 2017-01-05
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-11-23
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-24, 1980-04-01
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-02-26
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26, 1981-03-18
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-02-15, 1980-10-18, 1980-10-19, 1980-10-29
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-02-26, 2008-03-01, 2008-12-31, 2010-01-27, 2011-01-01
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-03-18, 2009-04-11
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-10-18, 2017-03-23
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2013-10-04, 2013-10-08, 2013-10-10, 2013-10-28, 2013-11-16, 2013-12-01, 2013-12-14, 2013-12-27, 2013-12-29, 2014-01-22, 2014-01-25, 2014-01-31, 2014-03-08, 2014-03-13, 2014-03-18, 2014-03-25, 2014-10-10, 2014-11-22, 2014-11-28, 2015-01-17, 2015-01-27, 2015-02-16, 2015-02-27, 2015-03-29, 2015-03-31, 2015-04-07, 2015-10-10, 2016-03-01, 2016-03-10
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-01-13, 2017-04-09, 2017-11-11, 2018-02-10, 2021-02-15
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-12-23, 2021-03-27
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-02-12, 1993-02-28
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-03-29, 1985-10-19, 1985-10-30, 1986-01-18, 1986-03-15, 1986-11-22, 1987-10-21
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-01-25, 1995-02-28
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-02-13
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2015-03-08
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2018-10-05, 2018-10-07, 2018-10-14, 2018-10-16, 2018-10-20, 2018-10-22, 2018-10-30, 2018-11-10, 2018-11-12, 2018-11-18, 2018-11-21, 2019-01-04, 2019-01-11, 2019-02-05, 2019-02-12, 2019-02-16, 2019-02-26
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-01-30
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1991-11-09, 1991-11-23, 1992-02-06, 1992-03-24
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1991-01-23, 1991-02-10, 1991-02-24, 1991-12-23, 1991-12-29
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-12-22
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1989-12-19, 1989-12-30, 1990-01-27, 1991-02-20
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-10-09, 1982-11-02, 1982-12-11, 1982-12-14, 1982-12-18, 1982-12-30, 1983-01-02, 1983-01-13, 1983-01-15, 1983-01-23, 1983-02-01, 1983-02-09, 1983-02-15, 1983-02-17, 1983-02-20, 1983-03-05, 1983-03-23, 1983-03-26
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-01-29, 1988-02-07, 1988-03-27, 1988-10-22, 1991-01-02
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-02-26, 2019-04-02, 2021-04-24
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2003-10-28
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-04-02
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-01-17, 1987-10-11, 1988-01-19, 1988-01-21, 1988-01-23, 1989-03-14, 1989-10-11
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-23, 1991-12-13, 1992-02-11, 1992-03-16, 1993-01-02, 1994-01-08
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-12-03, 1992-12-23, 1993-01-03
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2001-02-21
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-11-10, 2019-12-17, 2021-02-15, 2021-03-09, 2021-04-06, 2021-04-27
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-01-20, 2019-01-23, 2019-02-15, 2019-03-09, 2021-02-19, 2021-05-04
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1990-11-28, 1991-01-05, 1991-02-26, 1992-01-21
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-03-29
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2007-11-05
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-10-14, 2006-10-28, 2007-03-02
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2000-03-08
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-10-07, 2011-01-24
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-02-13, 2016-03-27, 2018-01-02
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1991-11-27, 1992-02-11, 1993-03-06, 1995-04-08, 1995-11-07, 1997-01-06, 1997-02-06, 1997-04-09
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-01-07
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-12-13
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-02-12
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-02-08
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-12-03, 1992-12-16, 1993-01-03, 1993-01-24, 1993-04-14
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2014-01-18, 2014-01-23, 2014-03-21
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1999-02-15, 2000-02-12, 2000-11-26, 2000-12-27, 2001-12-26
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1998-04-09
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-04-02, 2014-10-11
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2017-11-13
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-10-09
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-04-03, 1993-11-13, 1993-12-04, 1994-02-06, 1994-04-10, 1995-02-11, 1995-02-18, 1996-01-17, 1996-01-27, 1996-02-11, 1999-01-30
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1981-10-17
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-02-04, 1989-03-30, 1989-11-12, 1990-02-28, 1990-03-08
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-12-13, 2019-03-11, 2019-10-26, 2019-10-29, 2020-02-06, 2021-05-04
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1991-12-07
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-10-16
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1998-11-17, 1999-01-26, 1999-02-21
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-02-22
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-02-04
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1985-11-29, 1986-01-10, 1986-02-14, 1986-03-02, 1986-03-18, 1986-12-10, 1987-01-29, 1988-03-24
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-12-16
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-03-16, 1982-11-10, 1983-01-29, 1983-10-15, 1983-11-12, 1984-03-31, 1984-10-27, 1984-11-03, 1985-03-05, 1985-03-29, 1985-11-13
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1997-11-12, 1998-03-15, 2001-11-27
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-02-12, 1980-11-28, 1980-12-21
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1995-12-06, 1997-01-25, 1997-03-16, 1997-10-03
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-01-25
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-10-19, 1996-11-16, 1996-12-11, 1997-02-15, 1997-04-03, 1997-11-09, 1997-11-13, 1998-02-28, 1998-03-23, 1998-11-11, 1998-11-14, 1998-11-25
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2001-12-21, 2002-11-23, 2006-01-31, 2006-11-09, 2009-12-05
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-12-26, 2010-01-16, 2010-02-13, 2010-03-29, 2010-11-19, 2011-01-11, 2011-01-15, 2011-02-22, 2012-01-20, 2013-03-02
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-03-18, 1989-02-11
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-01-07, 2007-10-27
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-02-12
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-02-08, 2009-03-06
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1980-02-03
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2006-10-16
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-02-12, 1983-12-03, 1985-01-26
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-10-08, 1983-10-13, 1983-12-04, 1984-02-16, 1984-03-11, 1984-10-18, 1985-01-03, 1985-11-30, 1985-12-21
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2013-12-05, 2014-01-02, 2015-12-11, 2015-12-15
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-01-31, 2019-01-13, 2019-12-07, 2021-05-03
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1985-03-23, 1985-03-29, 1987-02-18, 1988-11-26, 1989-12-09
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-01-31, 2004-01-16
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-01-30, 1980-11-26, 1980-12-03, 1981-01-28
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-02-20, 1993-02-28, 1993-10-14, 1993-12-07
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-02-23
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1986-01-07, 1986-12-21, 1989-03-08, 1989-11-04, 1990-03-06
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-03-03, 1985-12-18, 1987-03-28
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-03-07
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-11-28, 1993-02-21, 1995-02-15, 1995-12-28, 1996-03-02
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-11-21, 1980-01-28, 1981-12-27, 1982-01-03, 1982-03-07, 1982-12-11, 1983-02-13
##     mostGoalsOneGame mostGoalsOneSeason
## 1                  0                  0
## 2                  0                  0
## 3                  0                  0
## 4                  0                  0
## 5                  0                  0
## 6                  0                  0
## 7                  0                  0
## 8                  0                  0
## 9                  0                  0
## 10                 0                  0
## 11                 0                  0
## 12                 0                  0
## 13                 0                  0
## 14                 0                  0
## 15                 0                  0
## 16                 0                  0
## 17                 0                  0
## 18                 0                  0
## 19                 0                  0
## 20                 0                  0
## 21                 0                  0
## 22                 0                  0
## 23                 0                  0
## 24                 0                  0
## 25                 0                  0
## 26                 0                  0
## 27                 0                  0
## 28                 0                  0
## 29                 0                  0
## 30                 0                  0
## 31                 0                  0
## 32                 0                  0
## 33                 0                  0
## 34                 0                  0
## 35                 0                  0
## 36                 0                  0
## 37                 0                  0
## 38                 0                  0
## 39                 0                  0
## 40                 0                  0
## 41                 0                  0
## 42                 0                  0
## 43                 0                  0
## 44                 0                  0
## 45                 0                  0
## 46                 0                  0
## 47                 0                  0
## 48                 0                  0
## 49                 0                  0
## 50                 0                  0
## 51                 0                  0
## 52                 0                  0
## 53                 0                  0
## 54                 0                  0
## 55                 0                  0
## 56                 0                  0
## 57                 0                  0
## 58                 0                  0
## 59                 0                  0
## 60                 0                  0
## 61                 0                  0
## 62                 0                  0
## 63                 0                  0
## 64                 0                  0
## 65                 0                  0
## 66                 0                  0
## 67                 0                  0
## 68                 0                  0
## 69                 0                  0
## 70                 0                  0
## 71                 0                  0
## 72                 0                  0
## 73                 0                  0
## 74                 0                  0
## 75                 0                  0
## 76                 0                  0
## 77                 0                  0
## 78                 0                  0
## 79                 0                  0
## 80                 0                  0
## 81                 0                  0
## 82                 0                  0
## 83                 0                  0
## 84                 0                  0
## 85                 0                  0
## 86                 0                  0
## 87                 0                  0
## 88                 0                  0
## 89                 0                  0
## 90                 0                  0
## 91                 0                  0
## 92                 0                  0
## 93                 0                  0
## 94                 0                  0
## 95                 0                  0
## 96                 0                  0
## 97                 0                  0
## 98                 0                  0
## 99                 0                  0
## 100                0                  0
## 101                0                  0
## 102                0                  0
## 103                0                  0
## 104                0                  0
## 105                0                  0
## 106                0                  0
## 107                0                  0
## 108                0                  0
## 109                0                  0
## 110                1                  1
## 111                1                  1
## 112                1                  1
## 113                1                  1
## 114                1                  1
## 115                1                  1
## 116                1                  1
## 117                1                  1
## 118                1                  1
## 119                1                  1
## 120                1                  1
## 121                1                  1
## 122                1                  1
## 123                1                  1
## 124                1                  1
## 125                1                  1
## 126                1                  1
## 127                1                  1
## 128                1                  1
## 129                1                  1
## 130                1                  1
## 131                1                  1
## 132                1                  1
## 133                1                  1
## 134                1                  1
## 135                1                  1
## 136                1                  1
## 137                1                  1
## 138                1                  1
## 139                1                  1
## 140                1                  1
## 141                1                  1
## 142                1                  1
## 143                1                  1
## 144                1                  1
## 145                1                  1
## 146                1                  1
## 147                1                  1
## 148                1                  1
## 149                1                  1
## 150                1                  1
## 151                1                  1
## 152                1                  1
## 153                1                  1
## 154                1                  1
## 155                1                  1
## 156                1                  1
## 157                1                  1
## 158                1                  1
## 159                1                  1
## 160                1                  2
## 161                1                  2
## 162                1                  2
## 163                2                  2
## 164                1                  2
## 165                1                  2
## 166                1                  2
## 167                1                  2
## 168                1                  2
## 169                1                  2
## 170                2                  2
## 171                1                  2
## 172                1                  2
## 173                1                  2
## 174                1                  2
## 175                1                  2
## 176                1                  2
## 177                1                  2
## 178                1                  2
## 179                1                  2
## 180                1                  2
## 181                1                  2
## 182                1                  2
## 183                1                  2
## 184                1                  2
## 185                2                  2
## 186                1                  2
## 187                2                  2
## 188                1                  2
## 189                1                  2
## 190                1                  2
## 191                1                  2
## 192                1                  2
## 193                1                  2
## 194                1                  2
## 195                1                  3
## 196                1                  3
## 197                1                  3
## 198                1                  3
## 199                1                  3
## 200                1                  3
## 201                1                  3
## 202                1                  3
## 203                1                  3
## 204                2                  3
## 205                1                  3
## 206                1                  3
## 207                1                  3
## 208                1                  3
## 209                1                  3
## 210                1                  3
## 211                1                  3
## 212                1                  3
## 213                1                  3
## 214                1                  3
## 215                1                  3
## 216                1                  3
## 217                1                  3
## 218                1                  3
## 219                1                  3
## 220                1                  3
## 221                1                  3
## 222                1                  3
## 223                2                  3
## 224                1                  3
## 225                1                  3
## 226                1                  3
## 227                1                  3
## 228                1                  3
## 229                1                  3
## 230                1                  3
## 231                2                  3
## 232                2                  3
## 233                1                  3
## 234                1                  3
## 235                2                  3
## 236                1                  3
## 237                1                  4
## 238                1                  4
## 239                1                  4
## 240                1                  4
## 241                1                  4
## 242                1                  4
## 243                2                  4
## 244                1                  4
## 245                1                  4
## 246                2                  4
## 247                2                  4
## 248                1                  4
## 249                1                  4
## 250                2                  4
## 251                1                  4
## 252                1                  4
## 253                2                  4
## 254                1                  4
## 255                1                  4
## 256                3                  4
## 257                1                  4
## 258                1                  4
## 259                1                  4
## 260                2                  4
## 261                2                  4
## 262                1                  4
## 263                1                  4
## 264                2                  4
## 265                1                  4
## 266                1                  5
## 267                1                  5
## 268                1                  5
## 269                1                  5
## 270                1                  5
## 271                2                  5
## 272                1                  5
## 273                2                  5
## 274                2                  5
## 275                1                  5
## 276                1                  5
## 277                1                  5
## 278                2                  5
## 279                1                  5
## 280                2                  5
## 281                1                  5
## 282                1                  5
## 283                2                  6
## 284                1                  6
## 285                1                  6
## 286                2                  6
## 287                2                  6
## 288                2                  6
## 289                2                  6
## 290                1                  6
## 291                1                  6
## 292                1                  6
## 293                2                  6
## 294                3                  6
## 295                2                  6
## 296                1                  6
## 297                2                  6
## 298                1                  6
## 299                2                  6
## 300                1                  6
## 301                1                  6
## 302                2                  6
## 303                2                  6
## 304                1                  6
## 305                2                  6
## 306                1                  7
## 307                1                  7
## 308                1                  7
## 309                1                  7
## 310                1                  7
## 311                1                  7
## 312                2                  7
## 313                1                  7
## 314                1                  7
## 315                2                  7
## 316                2                  7
## 317                2                  7
## 318                1                  7
## 319                2                  7
## 320                1                  7
## 321                1                  7
## 322                1                  7
## 323                1                  7
## 324                1                  7
## 325                2                  8
## 326                2                  8
## 327                2                  8
## 328                1                  8
## 329                2                  8
## 330                2                  8
## 331                1                  8
## 332                2                  8
## 333                2                  8
## 334                1                  8
## 335                1                  8
## 336                2                  8
## 337                2                  8
## 338                3                  8
## 339                2                  8
## 340                2                  9
## 341                2                  9
## 342                1                  9
## 343                1                  9
## 344                2                  9
## 345                1                  9
## 346                1                  9
## 347                1                  9
## 348                3                  9
## 349                1                  9
## 350                2                  9
## 351                2                  9
## 352                2                  9
## 353                2                  9
## 354                2                  9
## 355                2                 10
## 356                1                 10
## 357                1                 10
## 358                2                 10
## 359                2                 10
## 360                2                 10
## 361                2                 10
## 362                1                 10
## 363                1                 10
## 364                1                 11
## 365                2                 11
## 366                3                 11
## 367                2                 11
## 368                2                 11
## 369                2                 11
## 370                1                 11
## 371                2                 11
## 372                2                 12
## 373                2                 12
## 374                3                 12
## 375                1                 12
## 376                2                 12
## 377                3                 12
## 378                3                 12
## 379                1                 12
## 380                2                 12
## 381                3                 13
## 382                1                 13
## 383                2                 13
## 384                2                 13
## 385                2                 13
## 386                2                 13
## 387                2                 13
## 388                2                 14
## 389                3                 14
## 390                2                 14
## 391                3                 14
## 392                2                 15
## 393                2                 15
## 394                1                 15
## 395                3                 15
## 396                2                 15
## 397                3                 15
## 398                2                 16
## 399                3                 16
## 400                2                 16
## 401                2                 16
## 402                2                 16
## 403                2                 16
## 404                2                 16
## 405                1                 16
## 406                2                 16
## 407                2                 16
## 408                2                 17
## 409                2                 17
## 410                2                 17
## 411                3                 17
## 412                3                 17
## 413                1                 17
## 414                2                 17
## 415                2                 18
## 416                2                 18
## 417                2                 18
## 418                2                 18
## 419                1                 18
## 420                2                 18
## 421                2                 18
## 422                3                 19
## 423                3                 19
## 424                2                 20
## 425                2                 20
## 426                2                 20
## 427                3                 20
## 428                2                 20
## 429                2                 20
## 430                2                 21
## 431                3                 21
## 432                3                 21
## 433                2                 21
## 434                3                 21
## 435                2                 21
## 436                2                 21
## 437                2                 22
## 438                3                 22
## 439                3                 22
## 440                3                 22
## 441                3                 22
## 442                2                 22
## 443                2                 22
## 444                2                 23
## 445                3                 23
## 446                3                 23
## 447                3                 23
## 448                3                 24
## 449                2                 24
## 450                3                 24
## 451                2                 24
## 452                2                 24
## 453                3                 25
## 454                3                 25
## 455                2                 25
## 456                3                 25
## 457                3                 26
## 458                2                 26
## 459                3                 26
## 460                2                 27
## 461                3                 27
## 462                2                 28
## 463                2                 29
## 464                3                 29
## 465                2                 30
## 466                3                 30
## 467                2                 30
## 468                3                 31
## 469                3                 31
## 470                4                 32
## 471                3                 32
## 472                4                 33
## 473                3                 33
## 474                3                 35
## 475                2                 36
## 476                3                 37
## 477                3                 38
## 478                3                 41
## 479                3                 41
## 480                3                 44
## 481                3                 44
## 482                3                 44
## 483                3                 45
## 484                3                 45
## 485                4                 45
## 486                3                 46
## 487                3                 56
##                                             mostGoalsSeasonIds
## 1                                                     19921993
## 2                                                     19791980
## 3                                                     19801981
## 4                                           19901991, 19911992
## 5                                                     19831984
## 6                                                     19891990
## 7                                                     19871988
## 8                                                     19861987
## 9                                           19811982, 19821983
## 10                                          19861987, 19871988
## 11                                                    19861987
## 12                                          19871988, 19891990
## 13                                                    19891990
## 14                                                    19821983
## 15                                                    19831984
## 16                                                    19791980
## 17                                                    19861987
## 18                                                    19841985
## 19                                                    19801981
## 20                                                    19921993
## 21                                                    19891990
## 22                                                    19791980
## 23                                                    19811982
## 24                                          19811982, 19831984
## 25                                                    19931994
## 26                                                    19811982
## 27                                                    19851986
## 28                                                    19911992
## 29                                                    19901991
## 30                                                    19881989
## 31                                          19871988, 19881989
## 32                                                    19791980
## 33                                                    19791980
## 34                                          19861987, 19871988
## 35                                                    19791980
## 36                                19901991, 19911992, 19931994
## 37                                                    19881989
## 38                                          19881989, 19891990
## 39                                                    19871988
## 40                                                    19791980
## 41                                                    20032004
## 42                                                    19901991
## 43                                                    19971998
## 44                                                    20002001
## 45                                          19901991, 19911992
## 46                                                    19992000
## 47                                                    19921993
## 48                                          19951996, 19961997
## 49                                          19961997, 19971998
## 50  19971998, 19981999, 19992000, 20002001, 20012002, 20022003
## 51                                19971998, 19981999, 20002001
## 52                                                    20012002
## 53                                                    20022003
## 54                                19981999, 19992000, 20012002
## 55                                                    20012002
## 56                                                    20032004
## 57                                                    20002001
## 58                                                    20112012
## 59                                                    20012002
## 60                                          20022003, 20022003
## 61                                                    20082009
## 62                                                    20002001
## 63                                                    20082009
## 64                                                    20032004
## 65                                                    20122013
## 66                                          20052006, 20062007
## 67                                                    20132014
## 68                                          20022003, 20032004
## 69                                                    20072008
## 70                                                    20122013
## 71                                                    20092010
## 72                                20072008, 20082009, 20092010
## 73                                                    20072008
## 74                                                    20152016
## 75                                                    20102011
## 76                                                    20052006
## 77                                                    20092010
## 78                                                    20082009
## 79                                                    20122013
## 80                                                    20122013
## 81                                                    20092010
## 82                                                    20102011
## 83                                                    20132014
## 84                                                    20142015
## 85                                                    20122013
## 86                                                    20142015
## 87                                                    20142015
## 88                                                    20142015
## 89                                          20142015, 20152016
## 90                                                    20142015
## 91                                                    20162017
## 92                                                    20162017
## 93                                          20112012, 20122013
## 94                                                    20162017
## 95                                          20142015, 20152016
## 96                                20152016, 20172018, 20182019
## 97                                          20152016, 20162017
## 98                                                    20172018
## 99                                          20172018, 20182019
## 100                                                   20162017
## 101                                                   20162017
## 102                                         20172018, 20182019
## 103                                                   20192020
## 104                                                   20192020
## 105                                                   20192020
## 106                                                   20202021
## 107                                                   20202021
## 108                                                   20202021
## 109                                                   20202021
## 110                                                   19811982
## 111                                         19801981, 19811982
## 112                                         19951996, 19961997
## 113                                                   19851986
## 114                                                   19881989
## 115                                                   19811982
## 116                                                   19921993
## 117                                         19901991, 19921993
## 118                                         19941995, 19961997
## 119                                                   19791980
## 120                                                   19851986
## 121                                                   19821983
## 122                                                   19841985
## 123                                                   19811982
## 124                                                   19881989
## 125                                                   19821983
## 126                                         19801981, 19811982
## 127                                                   19921993
## 128                                                   19871988
## 129                                                   19811982
## 130                                         19801981, 19821983
## 131                                                   19901991
## 132                                                   19831984
## 133                                                   19931994
## 134                                                   19921993
## 135                                                   19931994
## 136                                                   20062007
## 137                                                   19951996
## 138                                                   19961997
## 139                                         20012002, 20022003
## 140                                                   20112012
## 141                                                   20032004
## 142                                                   20032004
## 143                                                   20022003
## 144                                                   20092010
## 145                                         20072008, 20082009
## 146                                                   20082009
## 147                                                   20102011
## 148                                                   20072008
## 149                                                   20102011
## 150                                                   20092010
## 151                                                   20162017
## 152                                                   20072008
## 153                                                   20132014
## 154                                                   20122013
## 155                                                   20172018
## 156                                                   20152016
## 157                                                   20182019
## 158                                                   20182019
## 159                                                   20202021
## 160                                                   19801981
## 161                                                   19861987
## 162                                                   19851986
## 163                                                   19831984
## 164                                                   19951996
## 165                                         19951996, 19961997
## 166                                                   19821983
## 167                                                   19791980
## 168                                                   19821983
## 169                                                   19791980
## 170                                                   19801981
## 171                                                   19831984
## 172                                                   19911992
## 173                                                   19931994
## 174                                                   19791980
## 175                                                   19911992
## 176                                                   19841985
## 177                                                   20012002
## 178                                                   19961997
## 179                                                   20082009
## 180                                                   20022003
## 181                                                   20022003
## 182                                                   20092010
## 183                                                   20092010
## 184                                                   20112012
## 185                                                   20102011
## 186                                                   20122013
## 187                                                   20122013
## 188                                         20132014, 20142015
## 189                                                   20112012
## 190                                                   20142015
## 191                                                   20162017
## 192                                                   20202021
## 193                                                   20202021
## 194                                                   20202021
## 195                                                   19791980
## 196                                                   19811982
## 197                                                   19841985
## 198                                                   19931994
## 199                                                   19971998
## 200                                                   19971998
## 201                                                   19791980
## 202                                                   19911992
## 203                                         19881989, 19891990
## 204                                                   19961997
## 205                                         19861987, 19871988
## 206                                                   19921993
## 207                                                   19941995
## 208                                                   19791980
## 209                                                   19891990
## 210                                                   19921993
## 211                                                   19881989
## 212                                                   19931994
## 213                                                   19951996
## 214                                                   19911992
## 215                                                   19791980
## 216                                                   19821983
## 217                                                   19831984
## 218                                                   19951996
## 219                                                   19941995
## 220                                                   19931994
## 221                                                   19992000
## 222                                                   20052006
## 223                                                   20022003
## 224                                                   20022003
## 225                                         20022003, 20032004
## 226                                         20052006, 20062007
## 227                                                   20022003
## 228                                                   20112012
## 229                                                   20102011
## 230                                                   20132014
## 231                                                   20172018
## 232                                                   20172018
## 233                                         20172018, 20182019
## 234                                                   20202021
## 235                                         20192020, 20202021
## 236                                                   20202021
## 237                                                   19911992
## 238                                                   19841985
## 239                                                   19901991
## 240                                                   20012002
## 241                                                   19931994
## 242                                                   20002001
## 243                                                   19921993
## 244                                                   19971998
## 245                                                   19961997
## 246                                                   19791980
## 247                                                   19821983
## 248                                                   19881989
## 249                                                   20052006
## 250                                                   19861987
## 251                                                   19901991
## 252                                                   19821983
## 253                                                   20052006
## 254                                                   20002001
## 255                                                   20092010
## 256                                                   19931994
## 257                                                   20132014
## 258                                                   20032004
## 259                                                   20052006
## 260                                                   20052006
## 261                                                   20102011
## 262                                                   20142015
## 263                                                   20192020
## 264                                                   20182019
## 265                                                   20192020
## 266                                                   19801981
## 267                                                   19871988
## 268                                                   19831984
## 269                                                   19821983
## 270                                                   19821983
## 271                                                   19911992
## 272                                                   19851986
## 273                                         19931994, 19941995
## 274                                                   20032004
## 275                                                   20002001
## 276                                                   20112012
## 277                                                   20032004
## 278                                                   20152016
## 279                                                   20082009
## 280                                                   20092010
## 281                                                   20082009
## 282                                                   20072008
## 283                                                   19801981
## 284                                                   20002001
## 285                                                   19891990
## 286                                                   19821983
## 287                                         19931994, 19941995
## 288                                                   19811982
## 289                                                   19831984
## 290                                                   19841985
## 291                                                   19931994
## 292                                                   19871988
## 293                                                   19831984
## 294                                                   19961997
## 295                                                   20052006
## 296                                                   19931994
## 297                                                   19931994
## 298                                                   20002001
## 299                                                   20032004
## 300                                                   20052006
## 301                                                   20152016
## 302                                                   20082009
## 303                                                   20112012
## 304                                                   20182019
## 305                                                   20202021
## 306                                                   19911992
## 307                                                   19951996
## 308                                                   19971998
## 309                                                   19831984
## 310                                                   19841985
## 311                                                   19881989
## 312                                                   19871988
## 313                                                   19921993
## 314                                                   20032004
## 315                                                   20132014
## 316                                                   20112012
## 317                                                   20002001
## 318                                                   20062007
## 319                                                   20142015
## 320                                                   20082009
## 321                                                   20142015
## 322                                                   20152016
## 323                                                   20182019
## 324                                                   20192020
## 325                                                   19881989
## 326                                                   19791980
## 327                                                   19841985
## 328                                                   19821983
## 329                                                   19861987
## 330                                                   19931994
## 331                                                   19791980
## 332                                                   19901991
## 333                                                   19951996
## 334                                                   20062007
## 335                                                   20092010
## 336                               20102011, 20122013, 20132014
## 337                                                   20112012
## 338                                         20172018, 20182019
## 339                                                   20192020
## 340                                                   19911992
## 341                                                   19941995
## 342                               19891990, 19901991, 19931994
## 343                                                   19801981
## 344                                                   19861987
## 345                                                   19861987
## 346                                                   19881989
## 347                                                   19811982
## 348                                                   20022003
## 349                                                   20072008
## 350                                                   20112012
## 351                                                   20072008
## 352                                                   20112012
## 353                                                   20162017
## 354                                                   20152016
## 355                                                   19821983
## 356                                                   19791980
## 357                                                   19911992
## 358                                                   19881989
## 359                                         19951996, 19961997
## 360                                                   20052006
## 361                                                   20132014
## 362                                                   20152016
## 363                                                   20172018
## 364                                                   19851986
## 365                                                   19992000
## 366                                         19921993, 19931994
## 367                                                   20062007
## 368                                                   20132014
## 369                                                   20152016
## 370                                                   20142015
## 371                                                   20192020
## 372                                                   19911992
## 373                                                   19901991
## 374                                                   19831984
## 375                                                   19921993
## 376                                                   19931994
## 377                                                   20002001
## 378                                                   20032004
## 379                                                   20112012
## 380                                                   20192020
## 381                                                   19851986
## 382                                                   19791980
## 383                                                   19801981
## 384                                                   19811982
## 385                                                   19801981
## 386                                         19992000, 20032004
## 387                                                   20192020
## 388                                                   19871988
## 389                                                   19801981
## 390                                                   19951996
## 391                                                   20082009
## 392                                                   19791980
## 393                                                   19831984
## 394                                                   19992000
## 395                                                   20052006
## 396                                                   20172018
## 397                                                   20182019
## 398                                                   19791980
## 399                                                   19881989
## 400                                                   19801981
## 401                                                   19801981
## 402                                                   20082009
## 403                                                   20082009
## 404                                                   20162017
## 405                                                   20132014
## 406                                                   20172018
## 407                                                   20192020
## 408                                                   19921993
## 409                                                   19881989
## 410                                                   19941995
## 411                                                   20162017
## 412                                                   20142015
## 413                                                   20182019
## 414                                                   20202021
## 415                                                   19911992
## 416                                                   19901991
## 417                                                   19811982
## 418                                                   19891990
## 419                                                   19821983
## 420                                                   19871988
## 421                                                   20182019
## 422                                                   20032004
## 423                                         20082009, 20112012
## 424                                                   19871988
## 425                                                   19911992
## 426                                                   19921993
## 427                                                   20002001
## 428                                                   20152016
## 429                                                   20202021
## 430                                         19901991, 19911992
## 431                                                   19961997
## 432                                         20052006, 20072008
## 433                                                   20062007
## 434                                                   20012002
## 435                                                   20092010
## 436                                                   20152016
## 437                                                   19961997
## 438                                                   19861987
## 439                                                   19861987
## 440                                                   19841985
## 441                                                   19801981
## 442                                                   19921993
## 443                                                   20132014
## 444                                                   20002001
## 445                                                   19992000
## 446                                                   20122013
## 447                                                   20172018
## 448                                                   19791980
## 449                                                   19931994
## 450                                                   19811982
## 451                                                   19891990
## 452                                                   20192020
## 453                                                   19921993
## 454                                                   19811982
## 455                                                   19981999
## 456                                                   20052006
## 457                                                   19911992
## 458                                                   19851986
## 459                                                   20082009
## 460                                         19831984, 19841985
## 461                                                   20012002
## 462                                                   19801981
## 463                                                   19951996
## 464                                                   19811982
## 465                                                   19981999
## 466                                                   20052006
## 467                                                   20092010
## 468                                                   19861987
## 469                                                   20052006
## 470                                                   19891990
## 471                                                   20062007
## 472                                                   19791980
## 473                                                   20062007
## 474                                                   19831984
## 475                                                   19831984
## 476                                                   20162017
## 477                                                   20192020
## 478                                                   19881989
## 479                                                   20002001
## 480                                                   19791980
## 481                                                   19891990
## 482                                                   19951996
## 483                                                   19881989
## 484                                                   19851986
## 485                                                   20052006
## 486                                                   19921993
## 487                                                   19791980
##     mostPenaltyMinutesOneSeason mostPenaltyMinutesSeasonIds
## 1                            68                    19921993
## 2                             2                    19791980
## 3                             0                    19801981
## 4                            14                    19901991
## 5                            25                    19831984
## 6                             7                    19891990
## 7                             0                    19871988
## 8                             0                    19861987
## 9                             2                    19811982
## 10                           78                    19861987
## 11                            0                    19861987
## 12                            6                    19891990
## 13                            2                    19891990
## 14                            0                    19821983
## 15                            0                    19831984
## 16                            6                    19791980
## 17                            2                    19861987
## 18                            6                    19841985
## 19                            4                    19801981
## 20                            7                    19921993
## 21                           43                    19891990
## 22                            4                    19791980
## 23                           11                    19811982
## 24                            4                    19831984
## 25                           41                    19931994
## 26                            2                    19811982
## 27                            0                    19851986
## 28                           16                    19911992
## 29                            2                    19901991
## 30                            5                    19881989
## 31                           31                    19871988
## 32                            0                    19791980
## 33                            0                    19791980
## 34                            0          19861987, 19871988
## 35                            0                    19791980
## 36                           19                    19911992
## 37                           14                    19881989
## 38                           23                    19881989
## 39                           11                    19871988
## 40                           10                    19791980
## 41                           80                    20032004
## 42                           29                    19901991
## 43                           83                    19971998
## 44                            6                    20002001
## 45                            2          19901991, 19911992
## 46                            9                    19992000
## 47                            2                    19921993
## 48                            0          19951996, 19961997
## 49                            6                    19961997
## 50                           25                    19992000
## 51                            8                    19981999
## 52                           77                    20012002
## 53                            0                    20022003
## 54                           17                    19992000
## 55                            2                    20012002
## 56                            0                    20032004
## 57                            0                    20002001
## 58                            2                    20112012
## 59                            6                    20012002
## 60                            2                    20022003
## 61                            8                    20082009
## 62                            0                    20002001
## 63                            2                    20082009
## 64                            2                    20032004
## 65                            0                    20122013
## 66                            0          20052006, 20062007
## 67                           14                    20132014
## 68                           43                    20022003
## 69                            0                    20072008
## 70                            5                    20122013
## 71                            5                    20092010
## 72                           60                    20072008
## 73                            0                    20072008
## 74                            0                    20152016
## 75                           12                    20102011
## 76                            7                    20052006
## 77                            6                    20092010
## 78                            0                    20082009
## 79                            0                    20122013
## 80                           20                    20122013
## 81                            0                    20092010
## 82                           22                    20102011
## 83                            0                    20132014
## 84                            0                    20142015
## 85                            2                    20122013
## 86                            4                    20142015
## 87                            0                    20142015
## 88                            2                    20142015
## 89                            0          20142015, 20152016
## 90                           10                    20142015
## 91                            0                    20162017
## 92                            6                    20162017
## 93                            4                    20112012
## 94                            0                    20162017
## 95                            7                    20152016
## 96                            5                    20182019
## 97                            0          20152016, 20162017
## 98                           19                    20172018
## 99                            2                    20182019
## 100                           0                    20162017
## 101                           0                    20162017
## 102                           4                    20182019
## 103                           6                    20192020
## 104                           4                    20192020
## 105                           0                    20192020
## 106                           0                    20202021
## 107                           2                    20202021
## 108                           0                    20202021
## 109                           0                    20202021
## 110                         171                    19821983
## 111                          82                    19801981
## 112                          88                    19951996
## 113                           4                    19851986
## 114                           0                    19881989
## 115                          22                    19811982
## 116                          48                    19911992
## 117                           6                    19891990
## 118                          44                    19951996
## 119                           4                    19791980
## 120                           2                    19851986
## 121                         199                    19821983
## 122                          34                    19831984
## 123                           2                    19811982
## 124                          24                    19881989
## 125                           0                    19821983
## 126                         142                    19801981
## 127                          60                    19921993
## 128                         116                    19871988
## 129                         134                    19811982
## 130                          55                    19801981
## 131                           4                    19901991
## 132                           4                    19831984
## 133                          10                    19931994
## 134                          47                    19921993
## 135                          49                    19931994
## 136                           2                    20062007
## 137                           8                    19951996
## 138                          22                    19971998
## 139                          20                    20022003
## 140                          76                    20112012
## 141                          22                    20032004
## 142                           0                    20032004
## 143                           0          20022003, 20032004
## 144                          11                    20092010
## 145                          76                    20072008
## 146                           0                    20082009
## 147                           2                    20102011
## 148                           2                    20072008
## 149                          54                    20102011
## 150                           8                    20092010
## 151                           4                    20162017
## 152                           5                    20082009
## 153                          11                    20112012
## 154                          17                    20122013
## 155                          28                    20172018
## 156                           4          20142015, 20152016
## 157                          20                    20182019
## 158                           6                    20182019
## 159                          10                    20202021
## 160                          11                    19801981
## 161                          19                    19861987
## 162                          53                    19851986
## 163                          10                    19831984
## 164                         230                    19951996
## 165                         138                    19951996
## 166                           2                    19821983
## 167                          44                    19791980
## 168                          64                    19821983
## 169                           0                    19791980
## 170                          39                    19801981
## 171                          24                    19841985
## 172                           0                    19911992
## 173                         246                    19931994
## 174                           0                    19791980
## 175                          18                    19911992
## 176                          56                    19841985
## 177                         106                    20012002
## 178                           7                    19961997
## 179                          10                    20082009
## 180                          31                    20032004
## 181                           4                    20052006
## 182                          74                    20092010
## 183                          12                    20092010
## 184                          35                    20112012
## 185                           4                    20102011
## 186                           4                    20122013
## 187                          45                    20122013
## 188                          45                    20132014
## 189                          10                    20092010
## 190                          12                    20152016
## 191                          30                    20162017
## 192                           9                    20202021
## 193                           8                    20202021
## 194                           4                    20202021
## 195                          63                    19791980
## 196                          11                    19811982
## 197                          40                    19841985
## 198                          41                    19961997
## 199                         218                    19961997
## 200                          94                    19971998
## 201                          69                    19791980
## 202                         167                    19921993
## 203                         171                    19891990
## 204                           2                    19961997
## 205                         130                    19861987
## 206                          63                    19921993
## 207                          30                    19941995
## 208                           2                    19791980
## 209                         127                    19911992
## 210                           2                    19921993
## 211                          23                    19881989
## 212                         124                    19931994
## 213                          72                    19931994
## 214                           6                    19911992
## 215                          14                    19791980
## 216                          39                    19811982
## 217                          11                    19831984
## 218                         254                    19951996
## 219                          21                    19941995
## 220                          13                    19941995
## 221                          95                    19981999
## 222                          37                    20052006
## 223                           2                    20022003
## 224                           2                    20022003
## 225                          32                    20022003
## 226                          30                    20062007
## 227                           2                    20022003
## 228                           6                    20112012
## 229                           4                    20112012
## 230                           2                    20132014
## 231                           2                    20172018
## 232                          16                    20172018
## 233                          20                    20172018
## 234                          30                    20202021
## 235                          10                    20202021
## 236                          17                    20202021
## 237                          10                    19911992
## 238                          25                    19831984
## 239                          19                    19901991
## 240                          15                    20002001
## 241                          31                    19931994
## 242                          38                    20002001
## 243                          28                    19921993
## 244                          42                    19971998
## 245                          50                    19981999
## 246                          92                    19791980
## 247                           9                    19811982
## 248                          61                    19881989
## 249                          12                    20052006
## 250                          87                    19861987
## 251                          44                    19911992
## 252                          73                    19821983
## 253                          25                    20052006
## 254                         159                    20002001
## 255                          28                    20092010
## 256                           2                    19931994
## 257                          41                    20132014
## 258                          37                    20032004
## 259                          30                    20052006
## 260                          71                    20022003
## 261                           4          20102011, 20142015
## 262                          10          20132014, 20152016
## 263                          14                    20172018
## 264                          20                    20182019
## 265                          30                    20192020
## 266                          93                    19801981
## 267                          30                    19871988
## 268                          30                    19831984
## 269                          21                    19821983
## 270                          16                    19821983
## 271                         202                    19921993
## 272                           2                    19851986
## 273                         113                    19931994
## 274                           8                    20032004
## 275                          23                    20002001
## 276                           6                    20112012
## 277                           8                    20032004
## 278                          45                    20132014
## 279                          28                    20072008
## 280                          85                    20102011
## 281                          37                    20082009
## 282                          10                    20072008
## 283                          16                    19801981
## 284                          54                    20002001
## 285                         211                    19901991
## 286                          18                    19821983
## 287                          32                    19941995
## 288                          16                    19811982
## 289                           9                    19831984
## 290                          96                    19841985
## 291                          32                    19931994
## 292                          87                    19871988
## 293                          36                    19831984
## 294                          38                    19981999
## 295                          90                    20022003
## 296                          27                    19931994
## 297                          45                    19921993
## 298                          88                    20012002
## 299                         127                    20032004
## 300                          46                    20052006
## 301                          16                    20152016
## 302                          31                    20082009
## 303                          17                    20122013
## 304                           8                    20182019
## 305                          14                    20202021
## 306                          64                    19911992
## 307                          38                    19951996
## 308                          65                    19971998
## 309                          12                    19831984
## 310                          10                    19841985
## 311                         113                    19881989
## 312                           6                    19871988
## 313                          76                    19921993
## 314                          75                    20022003
## 315                          18                    20132014
## 316                          26                    20112012
## 317                          44                    20062007
## 318                         138                    20052006
## 319                          24                    20152016
## 320                          72                    20092010
## 321                          75                    20152016
## 322                          18                    20152016
## 323                          27                    20192020
## 324                          72                    20192020
## 325                          49                    19881989
## 326                           8          19791980, 19801981
## 327                          91                    19841985
## 328                          43                    19821983
## 329                          32                    19861987
## 330                          32                    19931994
## 331                          89                    19791980
## 332                          55                    19901991
## 333                          88                    19951996
## 334                          14                    20062007
## 335                         106                    20092010
## 336                          23                    20112012
## 337                          32                    20102011
## 338                          18                    20182019
## 339                          30                    20192020
## 340                         121                    19951996
## 341                          29                    19941995
## 342                          87                    19931994
## 343                           4                    19801981
## 344                          20          19851986, 19861987
## 345                         125                    19851986
## 346                         181                    19881989
## 347                         123                    19811982
## 348                          22                    20022003
## 349                          30                    20072008
## 350                          72                    20102011
## 351                          10                    20072008
## 352                          30                    20112012
## 353                          33                    20162017
## 354                           8                    20152016
## 355                         216                    19821983
## 356                         107                    19791980
## 357                         159                    19911992
## 358                          28                    19881989
## 359                          39                    19981999
## 360                          71                    20022003
## 361                          29                    20132014
## 362                          17                    20162017
## 363                          26                    20162017
## 364                          59                    19851986
## 365                          40                    19992000
## 366                          36                    19921993
## 367                          46                    20062007
## 368                          20                    20132014
## 369                          36                    20152016
## 370                          16                    20152016
## 371                          36                    20182019
## 372                          36                    19911992
## 373                         107                    19901991
## 374                           4                    19831984
## 375                         237                    19921993
## 376                          44                    19931994
## 377                          71                    20002001
## 378                          24                    20032004
## 379                          27                    20112012
## 380                          20                    20192020
## 381                         358                    19851986
## 382                          24                    19791980
## 383                          26                    19801981
## 384                         147                    19811982
## 385                         190                    19801981
## 386                         141                    20022003
## 387                          34                    20192020
## 388                          62                    19891990
## 389                           4                    19791980
## 390                          34                    19951996
## 391                          18          20082009, 20102011
## 392                          42                    19791980
## 393                          34                    19831984
## 394                          38                    19992000
## 395                          57                    20022003
## 396                          28                    20172018
## 397                          38                    20182019
## 398                          13                    19791980
## 399                          21                    19891990
## 400                         139                    19801981
## 401                          68                    19801981
## 402                          32                    20092010
## 403                          30                    20062007
## 404                          32                    20162017
## 405                          36                    20132014
## 406                          22                    20172018
## 407                          20                    20192020
## 408                         325                    19921993
## 409                          45                    19881989
## 410                          22                    19941995
## 411                          48                    20172018
## 412                          24                    20152016
## 413                          58                    20182019
## 414                          20                    20202021
## 415                          14                    19911992
## 416                         101                    19901991
## 417                         242                    19811982
## 418                          95                    19901991
## 419                          18                    19821983
## 420                          22                    19871988
## 421                          54                    20182019
## 422                          60                    20032004
## 423                          59                    20102011
## 424                         202                    19861987
## 425                         120                    19911992
## 426                          37                    19921993
## 427                          45                    20002001
## 428                          40                    20192020
## 429                          42                    20192020
## 430                         113                    19901991
## 431                          61                    19941995
## 432                          32                    20052006
## 433                         115                    20072008
## 434                          90                    20022003
## 435                          25                    20102011
## 436                          24                    20152016
## 437                          62                    19921993
## 438                         170                    19901991
## 439                          20                    19851986
## 440                          67                    19841985
## 441                          68                    19811982
## 442                          46                    19921993
## 443                          46                    20122013
## 444                          67                    19981999
## 445                         178                    19981999
## 446                          26                    20112012
## 447                          16                    20162017
## 448                          54                    19801981
## 449                          12                    19971998
## 450                          51                    19811982
## 451                          47                    19891990
## 452                          62                    20182019
## 453                          38                    19911992
## 454                          12                    19811982
## 455                          16                    19981999
## 456                          40                    20052006
## 457                         141                    19911992
## 458                          59                    19871988
## 459                          79                    20082009
## 460                         129                    19841985
## 461                          24                    20002001
## 462                         160                    19801981
## 463                          78                    19951996
## 464                          39                    19811982
## 465                         161                    19961997
## 466                          93                    20032004
## 467                          54                    20112012
## 468                          28                    19881989
## 469                          68                    20052006
## 470                          87                    19871988
## 471                          46                    20062007
## 472                          44                    19811982
## 473                          73                    20062007
## 474                          30                    19841985
## 475                          32                    19831984
## 476                          56                    20112012
## 477                          32                    20202021
## 478                         109                    19891990
## 479                         106                    20002001
## 480                          32                    19801981
## 481                         246                    19901991
## 482                         125                    19951996
## 483                         217                    19871988
## 484                          88                    19851986
## 485                          81                    20052006
## 486                          42                    19931994
## 487                          57                    19811982
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mostPointsGameDates
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1992-10-06, 1992-10-08, 1992-10-10, 1992-10-12, 1992-10-14, 1992-10-17, 1992-10-20, 1992-10-22, 1992-10-24, 1992-10-28, 1992-10-31, 1992-11-03, 1992-11-06, 1992-11-07, 1992-11-11, 1992-11-13, 1992-11-14, 1992-11-18, 1992-11-19, 1992-11-21, 1992-11-25, 1992-11-27, 1992-11-28, 1992-12-01, 1992-12-03, 1992-12-05, 1992-12-09, 1992-12-11, 1992-12-12, 1992-12-16, 1992-12-18, 1992-12-19, 1992-12-21, 1992-12-23, 1992-12-26, 1992-12-27, 1992-12-31, 1993-01-02, 1993-01-03, 1993-01-06, 1993-01-09, 1993-01-10, 1993-01-13, 1993-01-15, 1993-01-16, 1993-01-18, 1993-01-21, 1993-01-23, 1993-01-24, 1993-01-27, 1993-01-28, 1993-01-30, 1993-02-03, 1993-02-08, 1993-02-12, 1993-02-13, 1993-02-17, 1993-02-20, 1993-02-21, 1993-02-24, 1993-02-27, 1993-02-28, 1993-03-03, 1993-03-05, 1993-03-06, 1993-03-08, 1993-03-10, 1993-03-13, 1993-03-16, 1993-03-19, 1993-03-22, 1993-03-24, 1993-03-27, 1993-03-28, 1993-03-30, 1993-04-01, 1993-04-03, 1993-04-05, 1993-04-07, 1993-04-10, 1993-04-11, 1993-04-13, 1993-04-14, 1993-04-16
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1979-10-13
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1990-10-27, 1991-02-24
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1982-04-03
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1987-02-01
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1990-03-03
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1983-04-03
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1987-04-04, 1987-04-05
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1984-10-11, 1984-10-13, 1984-10-17, 1984-10-28
## 19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1980-10-09, 1980-10-11, 1980-10-12, 1980-10-15, 1980-10-18, 1980-10-19, 1980-10-22, 1980-10-25, 1980-10-26, 1980-10-29, 1980-10-30, 1980-11-01, 1980-11-05, 1980-11-06, 1980-11-08, 1980-11-12, 1980-11-15, 1980-11-16, 1980-11-20, 1980-11-22, 1980-11-23, 1980-11-26, 1980-11-28, 1980-11-29, 1980-12-02, 1980-12-03, 1980-12-06, 1980-12-07, 1980-12-10, 1980-12-13, 1980-12-17, 1980-12-20, 1980-12-21, 1980-12-23, 1980-12-26, 1980-12-27, 1981-01-02, 1981-01-03, 1981-01-07, 1981-01-09, 1981-01-10, 1981-01-12, 1981-01-14, 1981-01-17, 1981-01-18, 1981-01-21, 1981-01-23, 1981-01-24, 1981-01-28, 1981-01-30, 1981-01-31, 1981-02-02, 1981-02-04, 1981-02-07, 1981-02-08, 1981-02-12, 1981-02-14, 1981-02-15, 1981-02-18, 1981-02-19, 1981-02-22, 1981-02-25, 1981-02-27, 1981-03-01, 1981-03-03, 1981-03-06, 1981-03-08, 1981-03-10, 1981-03-11, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-03-22, 1981-03-25, 1981-03-27, 1981-03-29, 1981-04-01, 1981-04-03, 1981-04-05
## 20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1992-10-14, 1992-10-22, 1992-10-24, 1992-10-28, 1992-11-03, 1992-11-06
## 21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1989-10-08, 1989-10-11, 1989-10-13, 1989-10-14, 1989-10-18, 1989-10-19, 1989-10-21, 1989-10-23, 1989-10-25, 1989-10-26, 1989-10-28, 1989-11-01, 1989-11-03, 1989-11-04, 1989-11-08, 1989-11-10, 1989-11-12, 1989-11-14, 1989-11-15, 1989-11-18, 1989-11-22, 1989-11-25, 1989-11-26, 1989-11-28, 1989-11-30, 1989-12-02, 1989-12-06, 1989-12-07, 1989-12-09, 1989-12-13, 1989-12-14, 1989-12-16, 1989-12-19, 1989-12-20, 1989-12-23, 1989-12-26, 1989-12-30, 1990-01-03, 1990-01-05, 1990-01-06, 1990-01-10, 1990-01-13, 1990-01-15, 1990-01-17, 1990-01-19, 1990-01-23, 1990-01-25, 1990-01-27, 1990-01-30, 1990-02-01, 1990-02-03, 1990-02-04, 1990-02-07, 1990-02-09, 1990-02-10, 1990-02-14, 1990-02-17, 1990-02-18, 1990-02-21, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1979-10-19
## 23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1981-12-27
## 24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04, 1983-10-05, 1983-10-08, 1983-10-09, 1983-10-13, 1983-10-15, 1983-10-19, 1983-10-22, 1983-10-25, 1983-10-28, 1983-10-30, 1983-11-01, 1983-11-02, 1983-11-05, 1983-11-06, 1983-11-08, 1983-11-12, 1983-11-15, 1983-11-17, 1983-11-19, 1983-11-23, 1983-11-26, 1983-11-30, 1983-12-03, 1983-12-04, 1983-12-06, 1983-12-08, 1983-12-10, 1983-12-13, 1983-12-15, 1983-12-17, 1983-12-20, 1983-12-21, 1983-12-23, 1983-12-26, 1983-12-27, 1983-12-30, 1984-01-03, 1984-01-05, 1984-01-07, 1984-01-08, 1984-01-10, 1984-01-13, 1984-01-15, 1984-01-17, 1984-01-19, 1984-01-21, 1984-01-24, 1984-01-26, 1984-01-28, 1984-01-29, 1984-02-01, 1984-02-04, 1984-02-05, 1984-02-07, 1984-02-11, 1984-02-12, 1984-02-14, 1984-02-16, 1984-02-18, 1984-02-19, 1984-02-23, 1984-02-25, 1984-02-26, 1984-03-03, 1984-03-04, 1984-03-07, 1984-03-08, 1984-03-11, 1984-03-13, 1984-03-15, 1984-03-17, 1984-03-18, 1984-03-20, 1984-03-21, 1984-03-24, 1984-03-25, 1984-03-27, 1984-03-29, 1984-03-31, 1984-04-01
## 25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1993-12-29, 1994-03-19, 1994-04-14
## 26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1981-10-06, 1981-10-08, 1981-10-10, 1981-10-15, 1981-10-17, 1981-10-21, 1981-10-23, 1981-10-24, 1981-10-29, 1981-10-31, 1981-11-01, 1981-11-04, 1981-11-07, 1981-11-08, 1981-11-11, 1981-11-12, 1981-11-14, 1981-11-18, 1981-11-19, 1981-11-21, 1981-11-25, 1981-11-28, 1981-11-29, 1981-12-02, 1981-12-04, 1981-12-06, 1981-12-09, 1981-12-12, 1981-12-13, 1981-12-16, 1981-12-19, 1981-12-20, 1981-12-22, 1981-12-26, 1981-12-27, 1981-12-29, 1981-12-30, 1982-01-02, 1982-01-03, 1982-01-06, 1982-01-09, 1982-01-11, 1982-01-16, 1982-01-17, 1982-01-20, 1982-01-23, 1982-01-25, 1982-01-27, 1982-01-30, 1982-01-31, 1982-02-02, 1982-02-05, 1982-02-06, 1982-02-10, 1982-02-13, 1982-02-14, 1982-02-16, 1982-02-19, 1982-02-20, 1982-02-22, 1982-02-24, 1982-02-27, 1982-02-28, 1982-03-03, 1982-03-06, 1982-03-07, 1982-03-10, 1982-03-13, 1982-03-14, 1982-03-16, 1982-03-18, 1982-03-20, 1982-03-21, 1982-03-24, 1982-03-27, 1982-03-28, 1982-03-30, 1982-03-31, 1982-04-03, 1982-04-04
## 27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1985-10-10, 1985-10-12, 1985-10-15, 1985-10-17, 1985-10-19, 1985-10-23, 1985-10-24, 1985-10-26, 1985-10-29, 1985-10-30, 1985-11-02, 1985-11-05, 1985-11-07, 1985-11-09, 1985-11-13, 1985-11-16, 1985-11-19, 1985-11-21, 1985-11-23, 1985-11-27, 1985-11-29, 1985-11-30, 1985-12-04, 1985-12-07, 1985-12-11, 1985-12-13, 1985-12-14, 1985-12-16, 1985-12-18, 1985-12-19, 1985-12-21, 1985-12-23, 1985-12-26, 1985-12-28, 1985-12-29, 1985-12-31, 1986-01-02, 1986-01-04, 1986-01-07, 1986-01-10, 1986-01-12, 1986-01-15, 1986-01-17, 1986-01-18, 1986-01-20, 1986-01-23, 1986-01-25, 1986-01-27, 1986-01-29, 1986-02-01, 1986-02-02, 1986-02-06, 1986-02-08, 1986-02-09, 1986-02-11, 1986-02-14, 1986-02-15, 1986-02-18, 1986-02-19, 1986-02-22, 1986-02-23, 1986-02-26, 1986-03-01, 1986-03-02, 1986-03-05, 1986-03-07, 1986-03-08, 1986-03-10, 1986-03-13, 1986-03-15, 1986-03-18, 1986-03-19, 1986-03-22, 1986-03-23, 1986-03-26, 1986-03-29, 1986-04-01, 1986-04-03, 1986-04-05, 1986-04-06
## 28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-10-16, 1991-10-19, 1991-10-23, 1991-10-26, 1991-10-27, 1991-10-30, 1991-11-01, 1991-11-02, 1991-11-06, 1991-11-09, 1991-11-10, 1991-11-12
## 29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1991-03-10, 1991-03-12, 1991-03-14, 1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1987-11-01, 1987-12-19, 1987-12-22, 1988-01-16, 1988-01-19, 1988-01-23, 1988-01-30, 1988-12-23, 1989-01-02
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1979-10-11, 1979-10-13, 1979-10-14, 1979-10-17, 1979-10-19, 1979-10-20, 1979-10-24, 1979-10-26, 1979-10-28, 1979-10-31, 1979-11-02, 1979-11-06, 1979-11-09, 1979-11-11, 1979-11-14, 1979-11-17, 1979-11-18, 1979-11-21, 1979-11-24, 1979-11-25, 1979-11-27, 1979-11-30, 1979-12-01, 1979-12-04, 1979-12-07, 1979-12-09, 1979-12-11, 1979-12-12, 1979-12-15, 1979-12-19, 1979-12-22, 1979-12-23, 1979-12-26, 1979-12-29, 1980-01-02, 1980-01-04, 1980-01-06, 1980-01-07, 1980-01-09, 1980-01-12, 1980-01-17, 1980-01-19, 1980-01-21, 1980-01-24, 1980-01-26, 1980-01-28, 1980-01-30, 1980-02-02, 1980-02-03, 1980-02-06, 1980-02-08, 1980-02-10, 1980-02-12, 1980-02-15, 1980-02-16, 1980-02-18, 1980-02-19, 1980-02-23, 1980-02-26, 1980-02-27, 1980-02-29, 1980-03-01, 1980-03-06, 1980-03-08, 1980-03-09, 1980-03-12, 1980-03-13, 1980-03-15, 1980-03-16, 1980-03-19, 1980-03-21, 1980-03-22, 1980-03-24, 1980-03-26, 1980-03-28, 1980-03-29, 1980-04-01, 1980-04-02, 1980-04-04, 1980-04-06
## 34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1986-10-11, 1986-10-12, 1986-10-16, 1986-10-18, 1986-10-24, 1986-10-25, 1986-10-28, 1986-10-30, 1986-11-01, 1986-11-02, 1986-11-05, 1986-11-08, 1986-11-12, 1986-11-13, 1986-11-15, 1986-11-19, 1986-11-21, 1986-11-22, 1986-11-26, 1986-11-29, 1986-12-01, 1986-12-03, 1986-12-04, 1986-12-06, 1986-12-10, 1986-12-13, 1986-12-14, 1986-12-17, 1986-12-18, 1986-12-20, 1986-12-21, 1986-12-23, 1986-12-26, 1986-12-27, 1986-12-30, 1986-12-31, 1987-01-03, 1987-01-04, 1987-01-07, 1987-01-09, 1987-01-10, 1987-01-12, 1987-01-14, 1987-01-15, 1987-01-17, 1987-01-19, 1987-01-21, 1987-01-23, 1987-01-24, 1987-01-27, 1987-01-29, 1987-01-31, 1987-02-01, 1987-02-04, 1987-02-06, 1987-02-07, 1987-02-14, 1987-02-17, 1987-02-18, 1987-02-21, 1987-02-22, 1987-02-25, 1987-02-28, 1987-03-01, 1987-03-03, 1987-03-05, 1987-03-07, 1987-03-10, 1987-03-11, 1987-03-13, 1987-03-15, 1987-03-18, 1987-03-21, 1987-03-22, 1987-03-25, 1987-03-28, 1987-03-29, 1987-04-01, 1987-04-04, 1987-04-05, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1979-12-22
## 36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1994-03-30
## 37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02
## 38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1988-10-08, 1988-10-09, 1988-10-12, 1988-10-15, 1988-10-19, 1988-10-22, 1988-10-26, 1988-10-28, 1988-10-29, 1988-11-01, 1988-11-03, 1988-11-05, 1988-11-07, 1988-11-09, 1988-11-10, 1988-11-12, 1988-11-16, 1988-11-18, 1988-11-19, 1988-11-23, 1988-11-26, 1988-11-30, 1988-12-02, 1988-12-03, 1988-12-06, 1988-12-08, 1988-12-10, 1988-12-14, 1988-12-15, 1988-12-17, 1988-12-19, 1988-12-21, 1988-12-23, 1988-12-26, 1988-12-28, 1988-12-30, 1988-12-31, 1989-01-02, 1989-01-04, 1989-01-10, 1989-01-14, 1989-01-16, 1989-01-18, 1989-01-19, 1989-01-21, 1989-01-23, 1989-01-25, 1989-01-27, 1989-01-28, 1989-01-31, 1989-02-03, 1989-02-04, 1989-02-09, 1989-02-11, 1989-02-15, 1989-02-18, 1989-02-19, 1989-02-21, 1989-02-23, 1989-02-25, 1989-02-26, 1989-02-28, 1989-03-02, 1989-03-04, 1989-03-05, 1989-03-08, 1989-03-11, 1989-03-12, 1989-03-14, 1989-03-16, 1989-03-18, 1989-03-19, 1989-03-22, 1989-03-23, 1989-03-25, 1989-03-28, 1989-03-30, 1989-04-01, 1989-04-02, 1990-02-23, 1990-02-24, 1990-02-28, 1990-03-02, 1990-03-03, 1990-03-06, 1990-03-08, 1990-03-10, 1990-03-11, 1990-03-13, 1990-03-17, 1990-03-18, 1990-03-21, 1990-03-24, 1990-03-25, 1990-03-27, 1990-03-29, 1990-03-31, 1990-04-01
## 39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1988-02-23, 1988-02-25, 1988-02-27, 1988-03-01, 1988-03-02, 1988-03-05, 1988-03-08, 1988-03-09, 1988-03-12, 1988-03-13, 1988-03-15, 1988-03-19, 1988-03-20, 1988-03-22, 1988-03-24, 1988-03-26, 1988-03-27, 1988-03-31, 1988-04-02, 1988-04-03
## 40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1979-10-19, 1979-10-28, 1979-11-18
## 41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2003-11-28, 2003-12-20, 2004-01-15, 2004-01-16, 2004-01-27
## 42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1991-03-16, 1991-03-17, 1991-03-19, 1991-03-23, 1991-03-25, 1991-03-27, 1991-03-30, 1991-03-31
## 43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1997-10-03, 1997-10-20, 1997-12-12
## 44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-03-02
## 45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1991-03-31
## 46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2000-03-15, 2000-03-17, 2000-03-18, 2000-03-21, 2000-03-22, 2000-03-26, 2000-03-27, 2000-03-29, 2000-03-31, 2000-04-02, 2000-04-03, 2000-04-08, 2000-04-09
## 47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1993-04-13, 1993-04-14, 1993-04-16
## 48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1995-10-07, 1995-10-11, 1995-10-14, 1995-10-16, 1995-10-20, 1995-10-21, 1995-10-25, 1995-10-27, 1995-10-28, 1995-11-02, 1995-11-04, 1995-11-05, 1995-11-07, 1995-11-11, 1995-11-14, 1995-11-15, 1995-11-18, 1995-11-20, 1995-11-22, 1995-11-24, 1995-11-25, 1995-11-29, 1995-12-01, 1995-12-02, 1995-12-06, 1995-12-09, 1995-12-10, 1995-12-13, 1995-12-15, 1995-12-16, 1995-12-18, 1995-12-20, 1995-12-22, 1995-12-23, 1995-12-28, 1995-12-30, 1995-12-31, 1996-01-03, 1996-01-05, 1996-01-06, 1996-01-09, 1996-01-10, 1996-01-12, 1996-01-16, 1996-01-17, 1996-01-24, 1996-01-25, 1996-01-27, 1996-01-30, 1996-01-31, 1996-02-02, 1996-02-07, 1996-02-09, 1996-02-11, 1996-02-14, 1996-02-17, 1996-02-21, 1996-02-23, 1996-02-25, 1996-02-28, 1996-03-01, 1996-03-02, 1996-03-06, 1996-03-08, 1996-03-09, 1996-03-13, 1996-03-16, 1996-03-18, 1996-03-20, 1996-03-22, 1996-03-23, 1996-03-25, 1996-03-27, 1996-03-30, 1996-04-01, 1996-04-03, 1996-04-04, 1996-04-06, 1996-04-08, 1996-04-11, 1996-04-13, 1996-04-14, 1996-10-05, 1996-10-08, 1996-10-12, 1996-10-17, 1996-10-19, 1996-10-24, 1996-10-26, 1996-10-30, 1996-10-31, 1996-11-02, 1996-11-04, 1996-11-06, 1996-11-08, 1996-11-09, 1996-11-12, 1996-11-14, 1996-11-16, 1996-11-20, 1996-11-22, 1996-11-23, 1996-11-27, 1996-11-29, 1996-11-30, 1996-12-03, 1996-12-05, 1996-12-07, 1996-12-11, 1996-12-12, 1996-12-14, 1996-12-16, 1996-12-17, 1996-12-20, 1996-12-21, 1996-12-26, 1996-12-28, 1996-12-29, 1997-01-01, 1997-01-02, 1997-01-04, 1997-01-06, 1997-01-09, 1997-01-10, 1997-01-12, 1997-01-15, 1997-01-20, 1997-01-22, 1997-01-24, 1997-01-25, 1997-01-30, 1997-01-31, 1997-02-05, 1997-02-06, 1997-02-08, 1997-02-12, 1997-02-13, 1997-02-15, 1997-02-16, 1997-02-19, 1997-02-21, 1997-02-22, 1997-02-26, 1997-02-28, 1997-03-02, 1997-03-05, 1997-03-07, 1997-03-08, 1997-03-12, 1997-03-13, 1997-03-15, 1997-03-16, 1997-03-20, 1997-03-21, 1997-03-25, 1997-03-27, 1997-03-29, 1997-04-02, 1997-04-03, 1997-04-05, 1997-04-07, 1997-04-09, 1997-04-11, 1997-04-13
## 49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1997-02-06
## 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1999-03-30
## 51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1998-04-18, 1998-12-26
## 52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2001-10-24
## 53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2002-10-09, 2002-10-11, 2002-10-12, 2002-10-15, 2002-10-17, 2002-10-19, 2002-10-22, 2002-10-23, 2002-10-26, 2002-10-29, 2002-10-30, 2002-11-01, 2002-11-05, 2002-11-07, 2002-11-09, 2002-11-12, 2002-11-15, 2002-11-17, 2002-11-19, 2002-11-21, 2002-11-23, 2002-11-25, 2002-11-27, 2002-11-29, 2002-11-30, 2002-12-03, 2002-12-04, 2002-12-06, 2002-12-07, 2002-12-11, 2002-12-12, 2002-12-15, 2002-12-18, 2002-12-20, 2002-12-22, 2002-12-27, 2002-12-28, 2002-12-31, 2003-01-03, 2003-01-04, 2003-01-07, 2003-01-08, 2003-01-10, 2003-01-12, 2003-01-15, 2003-01-17, 2003-01-18, 2003-01-20, 2003-01-22, 2003-01-24, 2003-01-25, 2003-01-29, 2003-01-30, 2003-02-05, 2003-02-07, 2003-02-09, 2003-02-11, 2003-02-14, 2003-02-15, 2003-02-18, 2003-02-19, 2003-02-21, 2003-02-23, 2003-02-26, 2003-03-01, 2003-03-02, 2003-03-04, 2003-03-06, 2003-03-07, 2003-03-10, 2003-03-12, 2003-03-13, 2003-03-15, 2003-03-18, 2003-03-22, 2003-03-25, 2003-03-26, 2003-03-29, 2003-03-31, 2003-04-02, 2003-04-04, 2003-04-06
## 54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1999-11-22, 1999-11-26
## 55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2011-12-06, 2011-12-07
## 59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2001-10-05, 2001-10-07, 2001-10-09, 2001-10-11, 2001-10-13, 2001-10-17, 2001-10-18, 2001-10-20, 2001-10-23, 2001-10-24, 2001-10-26, 2001-10-28, 2001-10-30, 2001-11-01, 2001-11-02, 2001-11-04, 2001-11-06, 2001-11-08, 2001-11-09, 2001-11-11, 2001-11-13, 2001-11-15, 2001-11-17, 2001-11-19, 2001-11-21, 2001-11-25, 2001-11-27, 2001-11-29, 2001-11-30, 2001-12-02, 2001-12-04, 2001-12-08, 2001-12-10, 2001-12-12, 2001-12-14, 2001-12-16, 2001-12-18, 2001-12-21, 2001-12-22, 2001-12-26, 2001-12-27, 2001-12-30, 2001-12-31, 2002-01-02, 2002-01-05, 2002-01-06, 2002-01-10, 2002-01-12, 2002-01-15, 2002-01-17, 2002-01-19, 2002-01-21, 2002-01-23, 2002-01-25, 2002-01-26, 2002-01-29, 2002-01-30, 2002-02-05, 2002-02-07, 2002-02-08, 2002-02-10, 2002-02-26, 2002-02-28, 2002-03-02, 2002-03-05, 2002-03-07, 2002-03-08, 2002-03-11, 2002-03-16, 2002-03-18, 2002-03-21, 2002-03-23, 2002-03-26, 2002-03-28, 2002-03-30, 2002-04-02, 2002-04-03, 2002-04-07, 2002-04-08, 2002-04-10, 2002-04-12, 2002-04-14
## 60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2002-11-15
## 61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2008-11-04, 2008-11-06, 2008-11-23, 2008-12-04
## 62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2000-10-07, 2000-10-10, 2000-10-13, 2000-10-14, 2000-10-18, 2000-10-21, 2000-10-24, 2000-10-25, 2000-10-27, 2000-10-29, 2000-10-31, 2000-11-03, 2000-11-04, 2000-11-08, 2000-11-10, 2000-11-12, 2000-11-15, 2000-11-16, 2000-11-18, 2000-11-22, 2000-11-24, 2000-11-26, 2000-11-29, 2000-11-30, 2000-12-03, 2000-12-06, 2000-12-09, 2000-12-13, 2000-12-15, 2000-12-16, 2000-12-19, 2000-12-23, 2000-12-26, 2000-12-27, 2000-12-29, 2000-12-31, 2001-01-03, 2001-01-06, 2001-01-07, 2001-01-09, 2001-01-12, 2001-01-14, 2001-01-16, 2001-01-18, 2001-01-20, 2001-01-22, 2001-01-24, 2001-01-27, 2001-01-29, 2001-01-31, 2001-02-01, 2001-02-07, 2001-02-08, 2001-02-11, 2001-02-14, 2001-02-16, 2001-02-18, 2001-02-19, 2001-02-21, 2001-02-23, 2001-02-24, 2001-02-27, 2001-03-01, 2001-03-02, 2001-03-04, 2001-03-07, 2001-03-08, 2001-03-11, 2001-03-14, 2001-03-15, 2001-03-18, 2001-03-21, 2001-03-23, 2001-03-24, 2001-03-26, 2001-03-28, 2001-03-30, 2001-04-01, 2001-04-03, 2001-04-04, 2001-04-06, 2001-04-08
## 63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2009-02-24, 2009-02-26
## 64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2003-10-09, 2003-10-11, 2003-10-13, 2003-10-18, 2003-10-22, 2003-10-23, 2003-10-25, 2003-10-28, 2003-10-30, 2003-11-01, 2003-11-02, 2003-11-06, 2003-11-08, 2003-11-09, 2003-11-12, 2003-11-13, 2003-11-15, 2003-11-18, 2003-11-20, 2003-11-21, 2003-11-23, 2003-11-26, 2003-11-28, 2003-11-29, 2003-12-03, 2003-12-05, 2003-12-06, 2003-12-09, 2003-12-11, 2003-12-14, 2003-12-18, 2003-12-20, 2003-12-22, 2003-12-26, 2003-12-27, 2003-12-29, 2003-12-31, 2004-01-02, 2004-01-04, 2004-01-06, 2004-01-08, 2004-01-09, 2004-01-11, 2004-01-15, 2004-01-16, 2004-01-18, 2004-01-20, 2004-01-21, 2004-01-23, 2004-01-25, 2004-01-27, 2004-01-29, 2004-01-31, 2004-02-03, 2004-02-04, 2004-02-12, 2004-02-14, 2004-02-16, 2004-02-19, 2004-02-21, 2004-02-23, 2004-02-25, 2004-02-28, 2004-02-29, 2004-03-02, 2004-03-05, 2004-03-06, 2004-03-08, 2004-03-10, 2004-03-12, 2004-03-13, 2004-03-15, 2004-03-17, 2004-03-19, 2004-03-20, 2004-03-23, 2004-03-25, 2004-03-27, 2004-03-29, 2004-03-30, 2004-04-02, 2004-04-04
## 65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01
## 66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2006-01-31
## 67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2014-04-13
## 68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2002-12-15, 2002-12-20
## 69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2007-12-22
## 70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-04-02, 2013-04-13, 2013-04-18, 2013-04-25
## 71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2009-10-02, 2009-10-03, 2009-10-06, 2009-10-09, 2009-10-10, 2009-10-14, 2009-10-17, 2009-10-21, 2009-10-23, 2009-10-24, 2009-10-28, 2009-10-31, 2009-11-01, 2009-11-04, 2009-11-06, 2009-11-07, 2009-11-11, 2009-11-13, 2009-11-15, 2009-11-17, 2009-11-19, 2009-11-21, 2009-11-23, 2009-11-25, 2009-11-27, 2009-11-28, 2009-11-30, 2009-12-05, 2009-12-07, 2009-12-09, 2009-12-11, 2009-12-12, 2009-12-16, 2009-12-18, 2009-12-19, 2009-12-21, 2009-12-23, 2009-12-26, 2009-12-28, 2009-12-31, 2010-01-02, 2010-01-07, 2010-01-08, 2010-01-10, 2010-01-12, 2010-01-14, 2010-01-16, 2010-01-18, 2010-01-21, 2010-01-23, 2010-01-24, 2010-01-27, 2010-01-28, 2010-01-30, 2010-02-01, 2010-02-03, 2010-02-05, 2010-02-06, 2010-02-09, 2010-02-11, 2010-02-13, 2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2008-02-23
## 73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2007-10-03, 2007-10-05, 2007-10-06, 2007-10-09, 2007-10-11, 2007-10-13, 2007-10-19, 2007-10-20, 2007-10-22, 2007-10-24, 2007-10-26, 2007-10-27, 2007-10-31, 2007-11-03, 2007-11-05, 2007-11-08, 2007-11-10, 2007-11-12, 2007-11-14, 2007-11-16, 2007-11-17, 2007-11-21, 2007-11-23, 2007-11-24, 2007-11-28, 2007-11-30, 2007-12-01, 2007-12-03, 2007-12-06, 2007-12-08, 2007-12-09, 2007-12-12, 2007-12-14, 2007-12-15, 2007-12-18, 2007-12-20, 2007-12-22, 2007-12-26, 2007-12-28, 2007-12-29, 2007-12-31, 2008-01-02, 2008-01-04, 2008-01-05, 2008-01-08, 2008-01-10, 2008-01-12, 2008-01-15, 2008-01-17, 2008-01-18, 2008-01-21, 2008-01-22, 2008-01-29, 2008-01-31, 2008-02-02, 2008-02-05, 2008-02-08, 2008-02-09, 2008-02-12, 2008-02-14, 2008-02-16, 2008-02-18, 2008-02-19, 2008-02-21, 2008-02-23, 2008-02-26, 2008-02-28, 2008-03-01, 2008-03-05, 2008-03-06, 2008-03-08, 2008-03-12, 2008-03-14, 2008-03-16, 2008-03-19, 2008-03-20, 2008-03-25, 2008-03-28, 2008-03-29, 2008-04-01, 2008-04-02, 2008-04-04
## 74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2010-11-19, 2010-11-24, 2010-11-26, 2011-01-09, 2011-01-11, 2011-01-15, 2011-01-24, 2011-02-05, 2011-02-08, 2011-02-13
## 76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2006-01-17
## 77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2010-03-02, 2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2009-02-05
## 79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2010-03-04, 2010-03-06, 2010-03-07, 2010-03-10, 2010-03-11, 2010-03-13, 2010-03-16, 2010-03-18, 2010-03-20, 2010-03-21, 2010-03-23, 2010-03-25, 2010-03-27, 2010-03-29, 2010-03-31, 2010-04-01, 2010-04-03, 2010-04-06, 2010-04-08, 2010-04-10
## 82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2010-12-04, 2010-12-10, 2010-12-23
## 83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2013-10-04, 2013-10-06, 2013-10-08, 2013-10-10, 2013-10-11, 2013-10-13, 2013-10-15, 2013-10-17, 2013-10-19, 2013-10-24, 2013-10-25, 2013-10-28, 2013-11-01, 2013-11-02, 2013-11-05, 2013-11-07, 2013-11-09, 2013-11-12, 2013-11-15, 2013-11-16, 2013-11-18, 2013-11-21, 2013-11-23, 2013-11-24, 2013-11-27, 2013-11-29, 2013-12-01, 2013-12-03, 2013-12-05, 2013-12-06, 2013-12-09, 2013-12-10, 2013-12-12, 2013-12-14, 2013-12-20, 2013-12-21, 2013-12-23, 2013-12-27, 2013-12-29, 2013-12-31, 2014-01-02, 2014-01-04, 2014-01-05, 2014-01-09, 2014-01-10, 2014-01-13, 2014-01-18, 2014-01-19, 2014-01-22, 2014-01-23, 2014-01-25, 2014-01-27, 2014-01-28, 2014-01-31, 2014-02-04, 2014-02-07, 2014-02-08, 2014-02-25, 2014-02-27, 2014-03-01, 2014-03-02, 2014-03-04, 2014-03-07, 2014-03-08, 2014-03-11, 2014-03-13, 2014-03-15, 2014-03-16, 2014-03-18, 2014-03-21, 2014-03-22, 2014-03-25, 2014-03-27, 2014-03-29, 2014-03-31, 2014-04-01, 2014-04-03, 2014-04-05, 2014-04-08, 2014-04-10, 2014-04-11, 2014-04-13
## 84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2013-01-19, 2013-01-22, 2013-01-24, 2013-01-25, 2013-01-28, 2013-02-01, 2013-02-02, 2013-02-04, 2013-02-07, 2013-02-09, 2013-02-11, 2013-02-12, 2013-02-14, 2013-02-18, 2013-02-21, 2013-02-23, 2013-02-24, 2013-02-26, 2013-02-28, 2013-03-02, 2013-03-03, 2013-03-05, 2013-03-07, 2013-03-09, 2013-03-12, 2013-03-14, 2013-03-16, 2013-03-18, 2013-03-19, 2013-03-21, 2013-03-26, 2013-03-28, 2013-03-30, 2013-04-01, 2013-04-02, 2013-04-04, 2013-04-06, 2013-04-08, 2013-04-09, 2013-04-11, 2013-04-13, 2013-04-16, 2013-04-18, 2013-04-20, 2013-04-21, 2013-04-23, 2013-04-25, 2013-04-27
## 86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2015-03-21, 2015-03-29
## 88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11
## 91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2017-01-06, 2017-01-21
## 92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-11-27, 2016-11-29, 2017-01-10, 2017-01-14, 2017-03-13, 2017-03-28
## 93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2013-03-07
## 94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2014-10-10, 2014-10-11, 2014-10-14, 2014-10-16, 2014-10-21, 2014-10-23, 2014-10-24, 2014-10-28, 2014-11-01, 2014-11-02, 2014-11-04, 2014-11-07, 2014-11-08, 2014-11-10, 2014-11-13, 2014-11-15, 2014-11-16, 2014-11-18, 2014-11-20, 2014-11-22, 2014-11-26, 2014-11-28, 2014-11-29, 2014-12-02, 2014-12-04, 2014-12-07, 2014-12-08, 2014-12-11, 2014-12-13, 2014-12-16, 2014-12-18, 2014-12-20, 2014-12-21, 2014-12-23, 2014-12-27, 2014-12-29, 2014-12-31, 2015-01-02, 2015-01-04, 2015-01-06, 2015-01-08, 2015-01-10, 2015-01-13, 2015-01-16, 2015-01-17, 2015-01-19, 2015-01-27, 2015-01-30, 2015-01-31, 2015-02-03, 2015-02-05, 2015-02-07, 2015-02-12, 2015-02-14, 2015-02-16, 2015-02-17, 2015-02-20, 2015-02-21, 2015-02-24, 2015-02-27, 2015-02-28, 2015-03-02, 2015-03-06, 2015-03-08, 2015-03-10, 2015-03-12, 2015-03-14, 2015-03-15, 2015-03-17, 2015-03-19, 2015-03-21, 2015-03-23, 2015-03-26, 2015-03-28, 2015-03-29, 2015-03-31, 2015-04-02, 2015-04-04, 2015-04-06, 2015-04-07, 2015-04-09, 2015-04-11, 2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09
## 96  2015-10-08, 2015-10-10, 2015-10-13, 2015-10-16, 2015-10-17, 2015-10-21, 2015-10-23, 2015-10-24, 2015-10-27, 2015-10-29, 2015-10-30, 2015-11-01, 2015-11-06, 2015-11-07, 2015-11-10, 2015-11-12, 2015-11-14, 2015-11-16, 2015-11-20, 2015-11-22, 2015-11-23, 2015-11-25, 2015-11-27, 2015-11-30, 2015-12-03, 2015-12-05, 2015-12-06, 2015-12-08, 2015-12-11, 2015-12-12, 2015-12-15, 2015-12-18, 2015-12-19, 2015-12-21, 2015-12-26, 2015-12-27, 2015-12-29, 2015-12-31, 2016-01-02, 2016-01-04, 2016-01-06, 2016-01-08, 2016-01-09, 2016-01-12, 2016-01-14, 2016-01-15, 2016-01-17, 2016-01-21, 2016-01-22, 2016-01-24, 2016-01-26, 2016-02-03, 2016-02-05, 2016-02-07, 2016-02-12, 2016-02-13, 2016-02-16, 2016-02-18, 2016-02-19, 2016-02-21, 2016-02-23, 2016-02-25, 2016-02-26, 2016-02-28, 2016-03-01, 2016-03-05, 2016-03-08, 2016-03-10, 2016-03-12, 2016-03-15, 2016-03-17, 2016-03-19, 2016-03-22, 2016-03-24, 2016-03-26, 2016-03-27, 2016-03-29, 2016-03-31, 2016-04-02, 2016-04-05, 2016-04-07, 2016-04-09, 2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2016-03-31, 2017-04-08
## 98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2017-11-07
## 99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2018-04-07, 2018-10-26, 2018-10-28, 2018-10-30, 2018-11-02, 2018-11-03, 2018-11-06, 2018-11-08, 2018-11-10, 2018-11-12, 2018-11-17, 2018-11-18, 2018-11-21, 2018-11-23, 2018-11-24, 2018-11-27, 2018-11-30, 2018-12-02, 2018-12-05, 2018-12-07, 2018-12-11, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2016-10-13, 2016-10-16, 2016-10-18, 2016-10-20, 2016-10-22, 2016-10-25, 2016-10-28, 2016-10-30, 2016-11-01, 2016-11-05, 2016-11-06, 2016-11-08, 2016-11-10, 2016-11-12, 2016-11-15, 2016-11-18, 2016-11-20, 2016-11-22, 2016-11-24, 2016-11-26, 2016-11-27, 2016-11-29, 2016-12-01, 2016-12-03, 2016-12-04, 2016-12-07, 2016-12-08, 2016-12-10, 2016-12-13, 2016-12-16, 2016-12-17, 2016-12-22, 2016-12-23, 2016-12-28, 2016-12-30, 2016-12-31, 2017-01-03, 2017-01-05, 2017-01-06, 2017-01-08, 2017-01-10, 2017-01-13, 2017-01-14, 2017-01-17, 2017-01-20, 2017-01-21, 2017-01-23, 2017-01-26, 2017-01-31, 2017-02-03, 2017-02-04, 2017-02-07, 2017-02-11, 2017-02-17, 2017-02-19, 2017-02-21, 2017-02-24, 2017-02-26, 2017-02-28, 2017-03-01, 2017-03-03, 2017-03-05, 2017-03-07, 2017-03-09, 2017-03-11, 2017-03-13, 2017-03-14, 2017-03-16, 2017-03-18, 2017-03-19, 2017-03-21, 2017-03-23, 2017-03-25, 2017-03-27, 2017-03-28, 2017-03-30, 2017-04-01, 2017-04-02, 2017-04-04, 2017-04-06, 2017-04-08, 2017-04-09
## 102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-10-07, 2017-10-10, 2017-10-14, 2017-10-17, 2017-10-19, 2017-10-21, 2017-10-24, 2017-10-26, 2017-10-27, 2017-10-29, 2017-11-02, 2017-11-04, 2017-11-07, 2017-11-10, 2017-11-11, 2017-11-13, 2017-11-16, 2017-11-18, 2017-11-19, 2017-11-22, 2017-11-24, 2017-11-26, 2017-11-28, 2017-12-01, 2017-12-02, 2017-12-05, 2017-12-07, 2017-12-09, 2017-12-11, 2017-12-12, 2017-12-15, 2017-12-16, 2017-12-19, 2017-12-21, 2017-12-23, 2017-12-27, 2017-12-29, 2017-12-30, 2018-01-02, 2018-01-04, 2018-01-06, 2018-01-09, 2018-01-11, 2018-01-12, 2018-01-14, 2018-01-20, 2018-01-21, 2018-01-23, 2018-01-25, 2018-01-30, 2018-02-01, 2018-02-02, 2018-02-04, 2018-02-06, 2018-02-09, 2018-02-10, 2018-02-13, 2018-02-15, 2018-02-16, 2018-02-18, 2018-02-23, 2018-02-24, 2018-02-27, 2018-03-01, 2018-03-02, 2018-03-04, 2018-03-06, 2018-03-08, 2018-03-12, 2018-03-13, 2018-03-17, 2018-03-18, 2018-03-20, 2018-03-22, 2018-03-24, 2018-03-26, 2018-03-27, 2018-03-30, 2018-03-31, 2018-04-02, 2018-04-05, 2018-04-07, 2018-12-13, 2018-12-14, 2018-12-16, 2018-12-20, 2018-12-22, 2018-12-23, 2018-12-27, 2018-12-29, 2018-12-31, 2019-01-03, 2019-01-04, 2019-01-06, 2019-01-08, 2019-01-10, 2019-01-11, 2019-01-13, 2019-01-15, 2019-01-18, 2019-01-20, 2019-01-22, 2019-01-23, 2019-02-01, 2019-02-03, 2019-02-05, 2019-02-07, 2019-02-08, 2019-02-10, 2019-02-12, 2019-02-15, 2019-02-16, 2019-02-19, 2019-02-21, 2019-02-23, 2019-02-26, 2019-03-01, 2019-03-02, 2019-03-05, 2019-03-08, 2019-03-09, 2019-03-11, 2019-03-15, 2019-03-16, 2019-03-19, 2019-03-21, 2019-03-23, 2019-03-24, 2019-03-26, 2019-03-28, 2019-03-30, 2019-03-31, 2019-04-02, 2019-04-04, 2019-04-06
## 103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-12-14
## 104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-10-15, 2019-10-16, 2019-10-18, 2019-10-24, 2019-10-26, 2019-10-29, 2019-11-01, 2019-11-02, 2019-11-05, 2019-11-07, 2019-11-09, 2019-11-11, 2019-11-14, 2019-11-16, 2019-11-19, 2019-11-21, 2019-11-23, 2019-11-24, 2019-11-27, 2019-11-29, 2019-11-30, 2019-12-03, 2019-12-05, 2019-12-07, 2019-12-10, 2019-12-12, 2019-12-14, 2019-12-17, 2019-12-19, 2019-12-21, 2019-12-23, 2019-12-27, 2019-12-28, 2019-12-31, 2020-01-03, 2020-01-05, 2020-01-07, 2020-01-10, 2020-01-11, 2020-01-13, 2020-01-16, 2020-01-17, 2020-01-19, 2020-01-21, 2020-01-31, 2020-02-02, 2020-02-04, 2020-02-06, 2020-02-08, 2020-02-11, 2020-02-14, 2020-02-16, 2020-02-18, 2020-02-21, 2020-02-22, 2020-02-25, 2020-02-28, 2020-02-29, 2020-03-05, 2020-03-07, 2020-03-08, 2020-03-10
## 105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-11-11
## 106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-01-28, 2021-01-30, 2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-01-31, 2021-02-02, 2021-02-04, 2021-02-07, 2021-02-08, 2021-02-11, 2021-02-13, 2021-02-15, 2021-02-17, 2021-02-19, 2021-02-20, 2021-02-22, 2021-02-24, 2021-02-25, 2021-02-27, 2021-03-01, 2021-03-02, 2021-03-04, 2021-03-07, 2021-03-09, 2021-03-11, 2021-03-14, 2021-03-16, 2021-03-18, 2021-03-20, 2021-03-22, 2021-03-25, 2021-03-27, 2021-03-30, 2021-04-01, 2021-04-03, 2021-04-04, 2021-04-06, 2021-04-08, 2021-04-10, 2021-04-12, 2021-04-15, 2021-04-17, 2021-04-19, 2021-04-20, 2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-04-22, 2021-04-24, 2021-04-26, 2021-04-27, 2021-04-29, 2021-05-01, 2021-05-03, 2021-05-04, 2021-05-06, 2021-05-08, 2021-05-10
## 109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-05-10
## 110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-12-30, 1982-01-03, 1982-02-10, 1982-02-24, 1982-10-21, 1983-01-09, 1983-01-15, 1983-02-19, 1983-03-06, 1983-03-20
## 111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-01-10, 1981-11-28
## 112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-12-15, 1996-12-07, 1996-12-11, 1997-01-09
## 113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-03-15
## 114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-02-09, 1989-02-11
## 115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-11-18, 1981-12-02, 1981-12-26, 1981-12-27, 1982-02-19
## 116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-01-28, 1992-02-01, 1992-12-16, 1992-12-19
## 117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-01-16
## 118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-01-25, 1995-02-11, 1995-02-15, 1995-02-18, 1995-04-04, 1995-04-12, 1995-04-14, 1995-10-07, 1995-11-29, 1995-12-15, 1996-03-02, 1996-10-08
## 119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-12-26, 1980-01-30
## 120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-01-02, 1986-01-17, 1986-01-20, 1986-01-25
## 121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-10-14, 1982-12-11, 1982-12-18, 1982-12-23, 1982-12-26, 1982-12-28, 1983-01-11, 1983-01-23, 1983-03-27, 1983-04-03, 1983-10-19, 1983-10-25, 1983-11-12, 1983-11-19, 1983-12-03, 1983-12-27, 1984-01-29, 1984-02-01, 1984-02-05
## 122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-03-03, 1982-03-10
## 123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-11-12
## 124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-12-28
## 125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-11-26, 1982-12-04, 1982-12-14
## 126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-11-26, 1980-12-17, 1981-01-24, 1981-03-14, 1981-03-15, 1981-03-18, 1981-03-21, 1981-10-29, 1981-11-01, 1981-11-12, 1981-11-25, 1981-12-29, 1982-03-24
## 127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-12-19
## 128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-02-01, 1988-02-07, 1988-02-15, 1988-03-01, 1988-04-02
## 129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-11-07, 1982-03-18
## 130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-10-17
## 131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-02-20, 1991-03-02
## 132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-11-15, 1984-01-17
## 133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-03-09
## 134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-18
## 135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-03-04
## 136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-04-06
## 137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-12-06, 1995-12-10, 1996-01-16, 1996-02-23, 1996-12-26
## 138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-04-05
## 139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2002-03-21, 2002-04-12, 2002-11-30, 2003-03-06, 2003-03-10, 2003-04-02
## 140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-10-10
## 141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2004-02-23, 2004-03-25, 2004-03-27
## 142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-04-04
## 143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-03-18, 2004-04-04
## 144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-03-11
## 145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2008-01-18, 2008-02-16, 2008-11-16
## 146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-11-02
## 147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-10-17
## 148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-03-19
## 149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2010-12-10, 2011-01-03, 2011-03-09
## 150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-12-16
## 151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-10-28
## 152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-01-04
## 153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-10-18, 2011-11-23, 2011-11-27, 2014-01-04, 2014-01-09
## 154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-02-11, 2013-04-20
## 155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-11-18
## 156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-03-31
## 157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2018-12-16, 2019-01-03
## 158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-12-07
## 159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2021-02-15, 2021-03-11
## 160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-10-15
## 161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-10-24, 1986-10-28, 1986-11-08, 1986-12-31, 1987-01-04, 1987-01-10
## 162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-11-30
## 163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-03-27, 1985-03-13
## 164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-05
## 165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-11-12
## 166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1982-04-03, 1983-01-11, 1983-01-15, 1983-02-01, 1983-02-05
## 167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-04-04
## 168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-10-21, 1982-11-04, 1982-11-07
## 169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-12
## 170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-02-22
## 171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-02-05, 1984-02-16, 1984-12-01, 1984-12-15, 1984-12-19, 1984-12-26
## 172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-10-30, 1991-11-01
## 173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-11-06, 1993-11-18, 1993-12-29, 1994-03-04, 1994-04-02
## 174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-02-12, 1980-02-15, 1980-02-26
## 175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-02-11, 1992-02-16
## 176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-10-28
## 177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2000-12-06, 2001-01-09, 2001-10-05, 2001-11-13, 2001-12-22
## 178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-01-25
## 179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2008-10-10, 2008-10-17
## 180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-03-12
## 181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-04-02
## 182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2009-12-18, 2010-01-30
## 183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-12-16, 2009-12-21, 2009-12-23, 2010-01-10, 2010-01-21, 2010-02-13, 2010-03-04, 2010-03-07, 2010-03-18, 2010-03-21, 2010-03-29, 2010-04-06
## 184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-02-25
## 185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-11-03
## 186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-02-23, 2013-02-24, 2013-03-05, 2013-03-09, 2013-04-02, 2013-04-09
## 187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-04-27
## 188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-03-12
## 189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-01-07, 2010-04-10, 2011-02-19, 2011-02-26, 2012-01-10, 2012-02-18, 2012-02-23, 2012-02-25, 2012-03-06
## 190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-02-16
## 191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2016-10-20, 2016-11-08, 2016-11-12, 2017-03-25, 2017-03-28, 2017-04-08, 2017-12-29, 2018-03-24, 2018-03-31, 2018-04-02, 2018-04-05
## 192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-04-26, 2021-04-27, 2021-05-08
## 193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-01-30, 2021-03-02, 2021-03-25, 2021-04-17, 2021-04-20, 2021-04-24, 2021-04-27, 2021-05-08
## 194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-04-17, 2021-04-26, 2021-05-06
## 195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-10-19
## 196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-30
## 197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1984-03-04, 1984-10-17, 1985-03-10
## 198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-12-18
## 199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-11-07
## 200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-02-21
## 201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-01-04, 1980-01-12
## 202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-01-11
## 203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1989-03-23, 1989-04-01, 1989-12-19, 1990-11-29
## 204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-04-03
## 205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-03-29
## 206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-04-15
## 207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-02-15
## 208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-10-24, 1979-11-17
## 209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1988-03-08, 1988-03-26, 1989-02-19, 1990-01-17, 1991-12-01, 1992-02-27
## 210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-24
## 211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-12-26, 1989-02-18, 1989-02-26, 1989-03-08, 1989-03-11
## 212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-01-02
## 213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-01-25
## 214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-11-29, 1991-10-05, 1991-10-12, 1991-10-14, 1991-10-26, 1991-11-01, 1991-11-02, 1991-11-06, 1992-02-22
## 215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1979-11-02, 1979-11-17, 1979-11-25, 1979-12-01, 1979-12-11, 1979-12-12, 1979-12-15
## 216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1982-10-23, 1983-01-02, 1983-02-09
## 217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-12-08
## 218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-03-22, 1995-04-21, 1995-11-22, 1995-11-25, 1995-12-20, 1996-02-09, 1996-03-13, 1996-04-01, 1996-04-08
## 219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-02-11
## 220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-04-05, 1995-04-08
## 221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1996-10-31, 1997-03-12, 1998-02-28, 1998-04-09, 1998-10-20, 1998-11-29, 1998-12-15, 1998-12-19, 1998-12-21, 1999-01-30, 1999-02-06, 1999-02-13, 1999-02-18, 1999-02-20, 1999-03-08, 1999-03-21, 1999-03-22, 1999-03-30, 1999-04-10, 1999-10-29, 1999-12-26, 1999-12-28, 2000-02-15
## 222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-08, 2005-10-15, 2005-12-20
## 223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-03-10
## 224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-01-17, 2003-01-25, 2003-01-30
## 225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2002-03-28, 2003-02-05, 2004-03-13
## 226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-11-25, 2005-12-02, 2006-10-25, 2007-01-11, 2007-01-20
## 227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-03-18
## 228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2011-12-21, 2011-12-23, 2011-12-26, 2012-01-03, 2012-02-02, 2012-02-20, 2012-03-15, 2013-02-11
## 229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2011-12-29, 2013-01-24
## 230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2014-03-18, 2014-03-25, 2014-04-01
## 231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2018-03-22, 2018-03-24
## 232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-10-26
## 233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-12-11, 2020-02-06
## 234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2020-02-28, 2021-01-31, 2021-02-02, 2021-02-07, 2021-03-22, 2021-03-25, 2021-03-30, 2021-04-08, 2021-04-19, 2021-04-29, 2021-05-03
## 235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2020-03-08
## 236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2021-02-20, 2021-02-27, 2021-03-02, 2021-03-25, 2021-03-27, 2021-04-20, 2021-04-26
## 237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-03-24
## 238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-02-19
## 239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-11-23, 1990-11-28, 1990-12-30, 1991-01-23, 1991-01-26, 1991-02-06
## 240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-12-07
## 241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1991-10-12, 1993-10-16
## 242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-03-04
## 243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-02-20, 1993-03-10
## 244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-10-07, 1997-10-10, 1997-10-18, 1997-10-26, 1997-11-03, 1997-11-09, 1997-11-16, 1997-11-19, 1998-01-05
## 245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1996-12-17, 1997-11-12
## 246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-03-08
## 247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-09
## 248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-11-23, 1989-02-11, 1989-02-21, 1989-04-01
## 249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-03-27, 2006-03-29, 2006-03-31, 2006-04-03, 2006-04-05, 2006-04-11, 2006-04-14
## 250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1986-12-17, 1986-12-18, 1986-12-21
## 251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-10-26
## 252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-06, 1982-02-02, 1982-10-16, 1982-12-04, 1983-02-17
## 253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2006-03-14
## 254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1998-10-10, 1998-11-19, 2000-01-28, 2000-02-14, 2000-02-19, 2000-03-08, 2000-03-26, 2000-10-18, 2000-11-26, 2000-11-30, 2000-12-06, 2001-01-14, 2001-01-20, 2001-01-27, 2001-02-21, 2001-03-18, 2001-03-24
## 255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2009-10-23, 2009-11-19, 2009-11-27, 2010-01-07, 2010-01-28, 2010-02-09, 2010-02-11
## 256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1994-02-12
## 257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-10-04, 2013-10-06, 2013-11-07, 2013-11-21, 2013-11-27, 2013-12-03, 2014-01-18, 2014-01-25, 2014-04-10
## 258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-10-28
## 259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-10-08, 2005-10-12, 2005-11-19, 2005-12-02, 2006-01-31, 2006-03-01
## 260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2001-01-09, 2003-10-25, 2006-01-26, 2007-12-15, 2008-10-17, 2008-10-19
## 261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-03-04, 2010-12-29, 2014-01-09, 2014-10-14
## 262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-02, 2015-01-08, 2015-10-30, 2016-03-08, 2016-03-31
## 263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2017-10-26, 2019-10-08, 2020-03-08
## 264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-01-15
## 265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2020-02-08, 2020-03-10
## 266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-12-23, 1981-01-09, 1981-01-10, 1981-01-21, 1981-01-24, 1981-01-30, 1981-02-08, 1981-03-06, 1981-03-08
## 267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-02-13
## 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-11-15, 1983-12-08, 1983-12-21, 1984-02-04, 1984-02-12, 1985-01-08
## 269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-11-28
## 270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-03-06, 1983-04-02
## 271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1992-02-09, 1993-03-19
## 272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-10-12, 1985-11-09
## 273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-10-13, 1993-12-01, 1994-01-01, 1994-02-12, 1995-03-01
## 274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-12-09
## 275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1999-10-08, 1999-10-29, 1999-11-05, 1999-11-17, 1999-11-22, 1999-12-23, 1999-12-26, 2000-01-28, 2000-02-01, 2000-02-08, 2000-03-12, 2000-04-08, 2000-10-10, 2000-12-06, 2000-12-31, 2001-01-03, 2001-01-09, 2001-03-11, 2001-03-30, 2001-04-08, 2001-10-07, 2001-11-13
## 276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-12-09
## 277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-01-16
## 278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-12-06, 2016-02-28, 2016-10-30, 2016-11-18, 2017-02-04
## 279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2003-03-04, 2008-02-21
## 280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-10-10
## 281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-04-07
## 282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-01-12
## 283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26
## 284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2000-11-26, 2001-01-09
## 285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-03-08, 1992-02-06
## 286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-01-01
## 287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-04-28
## 288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-10-06, 1981-10-17
## 289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-03-18, 1984-03-25
## 290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-11-24, 1985-01-05, 1985-10-19, 1985-11-09, 1986-01-17, 1986-04-01, 1988-02-17, 1988-03-15, 1989-03-14
## 291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-12-18
## 292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1987-10-17, 1987-10-31, 1987-12-05, 1988-01-16, 1988-01-21, 1988-01-23
## 293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1983-10-25, 1983-11-17, 1984-02-01, 1984-02-26, 1984-03-27, 1984-10-17, 1985-02-19
## 294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1997-03-12, 1998-11-05
## 295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2001-12-27, 2004-03-08, 2005-10-26, 2005-12-31, 2006-02-05, 2006-03-01
## 296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-12-22, 1994-02-12, 1995-04-21
## 297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1992-11-19, 1992-11-27, 1994-03-25, 1994-04-10
## 298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2001-01-09, 2001-04-04
## 299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2004-04-02
## 300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2008-03-05
## 301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-04-03
## 302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-03-03
## 303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2012-03-17
## 304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2019-01-04, 2019-01-08, 2019-01-23
## 305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2021-02-22, 2021-03-04, 2021-03-22, 2021-04-01
## 306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-11-02
## 307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1996-03-18
## 308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-11-13
## 309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1983-10-25, 1983-11-12, 1983-12-04, 1983-12-10
## 310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1984-12-08, 1985-02-10, 1985-02-17, 1985-02-23, 1985-03-01, 1985-03-03, 1985-03-13, 1985-03-16, 1985-03-20, 1985-03-24, 1985-03-29, 1985-04-06
## 311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1988-01-09, 1988-12-06, 1988-12-08
## 312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1987-11-18, 1988-01-09
## 313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1992-11-07, 1993-01-09, 1993-03-03
## 314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-10-12, 2007-10-24
## 315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-25
## 316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2011-11-21
## 317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2000-11-03, 2001-02-07, 2001-03-15, 2001-04-08, 2001-12-12, 2002-10-30, 2002-11-12, 2006-12-29, 2007-02-13, 2007-04-07
## 318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2005-10-15, 2006-10-14, 2006-11-11, 2006-11-13, 2006-11-24
## 319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-02-14, 2015-02-28
## 320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-11-21, 2010-01-12, 2010-01-16, 2011-10-18
## 321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-02-28, 2015-03-26
## 322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-03-22
## 323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-11-22, 2017-04-08, 2018-01-04, 2018-02-09, 2018-10-13, 2018-12-13, 2019-02-08, 2019-03-01, 2019-03-09, 2019-11-11, 2020-02-14, 2021-02-07, 2021-02-11, 2021-02-27
## 324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-11-11
## 325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-02-24
## 326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-10-29
## 327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-12-05
## 328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1983-02-09
## 329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-03-29, 1986-12-17
## 330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-11-03
## 331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-11-09, 1980-01-09, 1980-02-18, 1980-03-21, 1980-11-23, 1980-11-26, 1980-12-07, 1980-12-10
## 332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1990-01-06, 1990-03-08, 1990-11-29
## 333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1995-11-04, 1996-12-21, 2001-02-14, 2002-11-23
## 334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-10-11, 2006-12-31, 2007-01-11
## 335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2009-12-11, 2010-01-27, 2010-01-30, 2010-11-03
## 336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-04-10, 2010-11-19, 2010-12-28, 2010-12-29, 2011-11-14, 2013-02-04, 2013-03-12, 2013-11-12, 2014-01-04, 2014-03-18
## 337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2010-03-20, 2010-04-08, 2011-01-01, 2011-03-03, 2011-03-30, 2011-12-03, 2011-12-06, 2012-02-13
## 338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-03-13
## 339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-10-08, 2019-11-11, 2019-12-23, 2019-12-28, 2021-02-07
## 340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-02-29
## 341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-02-16, 1995-02-28, 1995-03-04, 1995-03-25, 1995-04-08, 1995-04-12
## 342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-02-14, 1990-02-18, 1990-03-24, 1990-11-10, 1991-10-30, 1991-11-27, 1991-12-13, 1992-10-14, 1994-01-02
## 343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1981-01-21, 1981-01-28, 1981-03-18
## 344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-01-20
## 345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-11-29, 1986-01-17, 1986-10-24, 1987-02-01, 1987-03-05
## 346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-10-15
## 347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-11-11
## 348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2002-11-23, 2002-11-29, 2002-12-12
## 349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2007-02-08, 2008-02-16, 2008-02-21, 2008-03-28
## 350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-11-05, 2011-02-22, 2012-01-07, 2012-01-12, 2013-01-25, 2013-02-07, 2013-12-03, 2013-12-06, 2014-03-18, 2014-10-24
## 351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-10-05
## 352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2012-03-03
## 353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-11-29
## 354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-02-16
## 355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1982-10-23, 1982-12-18
## 356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-03-15, 1980-03-22
## 357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1991-03-27, 1991-11-16, 1991-11-27, 1991-12-13, 1992-03-11
## 358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1988-12-30
## 359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1995-10-16
## 360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2003-03-10, 2005-12-06, 2005-12-13
## 361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-03-02
## 362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2015-12-26, 2016-02-05, 2018-03-18
## 363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2016-10-20, 2017-12-21, 2018-01-25
## 364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-01-25
## 365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1996-11-20, 1996-12-11, 1999-01-07, 1999-11-26, 1999-11-30, 2000-01-07, 2000-03-01, 2000-04-09
## 366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-04-07
## 367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2006-01-23, 2007-01-20, 2007-03-17, 2007-03-24, 2008-02-12, 2008-02-16
## 368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-23
## 369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2015-10-16, 2015-11-01
## 370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-04-03, 2014-10-14, 2014-11-02, 2015-03-12, 2015-04-07
## 371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2018-11-23, 2019-01-20
## 372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-03-24, 1990-03-27, 1992-03-21, 1992-04-12, 1992-04-15, 1993-03-03
## 373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1990-11-15, 1991-01-16, 1991-01-23
## 374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-02-12, 1984-02-18
## 375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-11-03, 1992-11-18, 1993-01-27, 1993-02-20, 1994-01-02
## 376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-11-18, 1993-11-20, 1993-12-04, 1994-02-19, 1994-03-19
## 377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2001-02-21, 2001-03-04
## 378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2003-11-29
## 379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2011-12-06, 2011-12-26
## 380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-12-23
## 381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1984-11-22
## 382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-21
## 383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1979-12-15, 1980-02-18, 1980-03-19, 1980-12-10
## 384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1981-10-17, 1982-02-22, 1983-03-26
## 385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-04-04
## 386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1999-12-07, 2000-03-21, 2000-03-26, 2002-03-28, 2002-11-23
## 387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2018-10-07, 2019-12-28
## 388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-01-27
## 389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1981-02-14, 1981-03-10
## 390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1996-01-17, 1996-02-07, 1996-02-11, 1996-03-08, 1996-03-27, 1996-10-08
## 391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2008-02-23, 2008-03-16, 2009-03-20, 2011-04-02
## 392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1979-11-02
## 393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-11-08, 1984-02-25
## 394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1999-11-30
## 395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2005-11-17, 2005-12-06
## 396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-12-13
## 397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2018-11-23
## 398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1979-12-01, 1980-02-18, 1980-03-22, 1980-03-24, 1980-04-01, 1980-04-02, 1980-04-06
## 399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1989-01-19, 1989-02-26, 1989-10-26
## 400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26
## 401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-28
## 402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-02-07
## 403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-04-07
## 404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2017-01-14
## 405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2014-01-25
## 406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2017-01-14, 2021-02-15
## 407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-12-23, 2021-03-27
## 408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-01-10, 1993-02-12, 1993-02-20, 1993-02-28
## 409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-01-17, 1986-03-15
## 410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1995-01-25, 1995-02-28
## 411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-12-05, 2014-11-10, 2015-02-07, 2015-03-10, 2016-12-13, 2018-02-13
## 412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-03-08
## 413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-01-11, 2019-02-12
## 414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-01-30
## 415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-12-09, 1990-03-08
## 416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1990-12-26, 1991-01-10, 1991-01-23, 1991-02-13, 1991-02-24, 1991-03-03
## 417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-10-17, 1981-11-18, 1981-11-28, 1981-12-09, 1981-12-22, 1981-12-27, 1982-01-02, 1982-01-03, 1982-01-09, 1982-01-20, 1982-02-05, 1982-03-16, 1982-03-24
## 418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-12-19
## 419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1982-12-11, 1983-01-01, 1983-02-09, 1983-03-23
## 420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1988-01-21, 1988-01-29, 1988-03-19, 1988-10-22
## 421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2019-02-26, 2019-11-01, 2019-12-17
## 422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2006-04-03
## 423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2010-04-08, 2010-11-17
## 424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1986-01-17, 1988-01-23, 1988-03-09, 1989-02-15, 1989-03-14
## 425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-01-18
## 426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1993-04-07, 1993-04-14
## 427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-01-07
## 428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2014-01-09, 2016-11-12, 2017-10-17, 2017-11-13
## 429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2021-02-19
## 430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1990-10-13, 1990-11-28, 1990-12-01, 1990-12-15, 1990-12-18, 1991-01-05, 1991-02-20, 1991-02-26, 1991-03-30, 1991-11-23, 1992-01-21, 1992-02-04, 1992-02-25, 1992-02-27, 1992-03-05, 1992-03-16, 1992-03-24
## 431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1995-03-14, 1995-03-29, 1995-11-07
## 432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2005-10-29, 2006-01-04, 2007-11-05
## 433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2007-01-20, 2007-03-24, 2008-02-21
## 434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1998-04-18, 2000-03-08, 2001-12-12, 2002-01-21, 2003-01-03
## 435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-02-11
## 436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2015-03-12, 2015-11-01, 2015-12-08, 2016-12-13, 2017-01-10
## 437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1993-04-03
## 438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-12-13, 1986-02-19
## 439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1987-01-04
## 440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1984-02-12, 1984-11-22
## 441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1980-12-10, 1980-12-21, 1981-02-08
## 442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1992-12-09, 1993-01-03, 1993-01-10, 1993-01-24, 1993-04-07
## 443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2013-02-11, 2013-02-24, 2013-03-02, 2013-03-05, 2013-03-09, 2013-04-21
## 444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-01-07
## 445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1997-10-22, 1997-11-12, 1998-03-02, 1998-04-09, 1999-01-18, 2000-03-02, 2000-03-26, 2000-04-08
## 446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2013-02-11
## 447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2016-11-12, 2017-11-13, 2018-12-23, 2019-02-26, 2021-02-15
## 448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-01-30
## 449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1993-12-04, 1994-04-10, 1996-02-11, 2000-01-06
## 450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1981-12-26
## 451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1989-01-14, 1989-03-30, 1989-11-04, 1989-11-25, 1990-03-08
## 452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         2019-01-20, 2019-03-11, 2019-11-14, 2020-02-06, 2021-04-27, 2021-05-04
## 453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1991-12-07, 1992-02-27, 1992-10-20, 1992-10-22, 1992-12-01, 1993-01-03, 1993-03-16
## 454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1981-12-30, 1982-10-16, 1982-11-10
## 455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1998-11-11, 1998-11-25
## 456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 2005-10-15, 2006-01-25, 2007-10-09, 2007-10-27, 2007-11-21, 2007-12-08, 2007-12-14, 2008-02-23, 2009-02-22, 2009-03-03, 2009-03-20, 2010-02-09
## 457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1991-03-31, 1991-10-16, 1991-10-23, 1991-11-12, 1991-12-13, 1991-12-23, 1992-01-02, 1992-02-04
## 458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-12-14, 1987-01-04, 1987-01-29, 1987-02-06, 1987-03-05
## 459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-03-07
## 460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1985-10-19
## 461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1997-11-12, 1998-03-15, 1999-01-02, 1999-04-10, 1999-10-11, 2000-03-02, 2000-04-08, 2000-10-07, 2001-03-04, 2001-03-30, 2001-10-28, 2001-11-08, 2001-11-27, 2001-12-31, 2002-03-07
## 462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1980-02-12, 1980-12-26
## 463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1997-01-25
## 464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1981-11-18, 1982-01-25, 1982-03-16
## 465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1998-03-23
## 466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2002-11-23, 2006-01-31, 2006-11-17, 2009-03-07, 2009-04-07
## 467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-11-19
## 468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1986-03-10, 1987-11-01, 1987-11-18
## 469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2001-12-16
## 470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1987-03-05, 1989-10-08
## 471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2007-02-08
## 472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-02-03
## 473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             2006-03-16, 2006-04-03, 2006-10-16
## 474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1983-10-25, 1983-12-03
## 475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1984-02-12, 1984-10-18, 1984-11-22
## 476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2010-10-29, 2010-11-09, 2011-01-07, 2011-03-30, 2011-04-08, 2011-10-08, 2011-10-22, 2011-11-12, 2013-02-04, 2013-12-03, 2013-12-05, 2013-12-31, 2014-01-02, 2015-12-11, 2015-12-15, 2016-10-28, 2016-12-13, 2017-01-10, 2017-01-13, 2017-04-04, 2018-03-22
## 477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2019-12-07
## 478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1985-03-29, 1989-12-09
## 479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1998-03-06, 1999-10-30, 1999-11-30, 2001-10-13
## 480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1980-12-26
## 481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1989-10-08, 1990-03-24
## 482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1996-02-23, 1996-03-27
## 483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1986-03-15, 1989-11-04
## 484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1983-10-25, 1984-12-22, 1985-10-19
## 485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     2009-03-07
## 486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1993-01-18, 1995-12-28, 1996-12-07
## 487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1979-11-21, 1980-01-21, 1980-01-28, 1980-02-06, 1980-02-23, 1980-04-04, 1980-11-22, 1981-12-27, 1982-03-07, 1982-12-11
##     mostPointsOneGame mostPointsOneSeason
## 1                   0                   0
## 2                   1                   1
## 3                   0                   0
## 4                   1                   2
## 5                   0                   0
## 6                   0                   0
## 7                   0                   0
## 8                   0                   0
## 9                   1                   1
## 10                  1                   1
## 11                  0                   0
## 12                  1                   1
## 13                  0                   0
## 14                  1                   1
## 15                  0                   0
## 16                  0                   0
## 17                  0                   0
## 18                  1                   4
## 19                  0                   0
## 20                  1                   6
## 21                  0                   0
## 22                  1                   1
## 23                  2                   3
## 24                  0                   0
## 25                  1                   3
## 26                  0                   0
## 27                  0                   0
## 28                  0                   0
## 29                  0                   0
## 30                  0                   0
## 31                  1                   7
## 32                  0                   0
## 33                  0                   0
## 34                  0                   0
## 35                  1                   1
## 36                  2                   4
## 37                  0                   0
## 38                  0                   0
## 39                  0                   0
## 40                  1                   3
## 41                  1                   5
## 42                  0                   0
## 43                  1                   3
## 44                  2                   5
## 45                  3                   4
## 46                  0                   0
## 47                  0                   0
## 48                  0                   0
## 49                  2                   4
## 50                  2                   8
## 51                  1                   1
## 52                  1                   1
## 53                  0                   0
## 54                  1                   2
## 55                  0                   0
## 56                  0                   0
## 57                  0                   0
## 58                  2                   9
## 59                  0                   0
## 60                  1                   1
## 61                  1                   4
## 62                  0                   0
## 63                  1                   2
## 64                  0                   0
## 65                  0                   0
## 66                  1                   1
## 67                  2                   4
## 68                  1                   2
## 69                  1                   1
## 70                  1                   4
## 71                  0                   0
## 72                  2                   5
## 73                  0                   0
## 74                  0                   0
## 75                  1                  10
## 76                  1                   1
## 77                  0                   0
## 78                  1                   1
## 79                  0                   0
## 80                  0                   0
## 81                  0                   0
## 82                  1                   3
## 83                  0                   0
## 84                  0                   0
## 85                  0                   0
## 86                  0                   0
## 87                  1                   2
## 88                  0                   0
## 89                  0                   0
## 90                  0                   0
## 91                  1                   2
## 92                  1                   6
## 93                  1                   1
## 94                  0                   0
## 95                  0                   0
## 96                  0                   0
## 97                  1                   1
## 98                  2                   3
## 99                  0                   0
## 100                 0                   0
## 101                 0                   0
## 102                 0                   0
## 103                 1                   1
## 104                 0                   0
## 105                 1                   1
## 106                 0                   0
## 107                 0                   0
## 108                 0                   0
## 109                 0                   0
## 110                 1                   6
## 111                 2                  11
## 112                 2                  11
## 113                 2                   9
## 114                 1                   2
## 115                 1                   5
## 116                 1                   2
## 117                 2                   4
## 118                 1                   7
## 119                 1                   2
## 120                 1                   3
## 121                 1                  10
## 122                 2                  11
## 123                 2                   2
## 124                 3                  23
## 125                 1                   3
## 126                 1                   7
## 127                 2                   5
## 128                 1                   5
## 129                 2                  12
## 130                 2                   8
## 131                 1                   2
## 132                 1                   2
## 133                 2                   3
## 134                 2                   8
## 135                 1                   1
## 136                 1                   1
## 137                 1                   4
## 138                 2                   2
## 139                 1                   4
## 140                 2                  14
## 141                 1                   3
## 142                 1                   1
## 143                 1                   1
## 144                 2                   4
## 145                 1                   2
## 146                 2                   2
## 147                 1                   1
## 148                 1                   1
## 149                 1                   3
## 150                 2                  11
## 151                 1                   1
## 152                 2                   3
## 153                 1                   3
## 154                 1                   2
## 155                 2                   6
## 156                 2                   2
## 157                 2                  14
## 158                 2                   3
## 159                 2                  12
## 160                 2                   4
## 161                 1                   6
## 162                 2                  10
## 163                 2                   5
## 164                 2                   6
## 165                 2                  12
## 166                 1                   4
## 167                 2                   7
## 168                 1                   3
## 169                 2                   7
## 170                 2                   6
## 171                 1                   4
## 172                 2                   4
## 173                 1                   5
## 174                 1                   3
## 175                 1                   2
## 176                 2                   5
## 177                 1                   3
## 178                 2                   3
## 179                 1                   2
## 180                 2                   7
## 181                 2                   3
## 182                 2                  10
## 183                 1                  12
## 184                 2                   5
## 185                 2                   2
## 186                 1                   6
## 187                 2                   4
## 188                 2                  10
## 189                 1                   5
## 190                 2                   6
## 191                 1                   6
## 192                 1                   3
## 193                 1                   8
## 194                 1                   3
## 195                 2                   6
## 196                 3                  16
## 197                 2                  11
## 198                 3                  12
## 199                 2                   7
## 200                 2                   8
## 201                 3                  18
## 202                 2                   9
## 203                 2                  13
## 204                 3                   6
## 205                 3                  12
## 206                 2                  14
## 207                 3                  20
## 208                 2                  17
## 209                 2                  15
## 210                 2                   5
## 211                 2                  14
## 212                 2                  10
## 213                 2                   9
## 214                 1                   8
## 215                 1                   7
## 216                 3                  31
## 217                 2                   8
## 218                 1                   7
## 219                 3                   9
## 220                 2                   6
## 221                 1                  15
## 222                 2                  23
## 223                 2                   3
## 224                 1                   3
## 225                 2                  14
## 226                 2                  14
## 227                 2                   5
## 228                 1                   7
## 229                 2                   4
## 230                 2                  10
## 231                 2                   7
## 232                 2                   6
## 233                 2                  16
## 234                 1                  10
## 235                 3                   9
## 236                 1                   7
## 237                 2                  10
## 238                 2                  11
## 239                 2                  23
## 240                 2                   7
## 241                 2                   9
## 242                 3                  18
## 243                 2                   8
## 244                 1                   9
## 245                 2                  17
## 246                 3                  20
## 247                 3                  14
## 248                 2                  17
## 249                 1                   7
## 250                 2                  12
## 251                 4                  35
## 252                 2                  17
## 253                 3                  13
## 254                 1                  10
## 255                 1                   7
## 256                 4                  15
## 257                 1                   9
## 258                 2                  14
## 259                 1                   6
## 260                 2                  10
## 261                 2                   9
## 262                 2                  13
## 263                 2                  14
## 264                 2                   8
## 265                 3                  24
## 266                 1                   8
## 267                 2                   9
## 268                 2                  25
## 269                 3                   9
## 270                 3                  28
## 271                 2                   9
## 272                 2                  10
## 273                 2                  30
## 274                 2                  12
## 275                 1                  12
## 276                 2                  12
## 277                 2                   8
## 278                 2                  19
## 279                 2                  14
## 280                 3                  19
## 281                 3                  30
## 282                 2                  13
## 283                 4                  17
## 284                 3                  24
## 285                 2                   8
## 286                 3                  31
## 287                 3                  11
## 288                 3                  22
## 289                 2                   9
## 290                 2                  25
## 291                 2                   8
## 292                 1                   6
## 293                 2                  29
## 294                 3                  16
## 295                 2                  25
## 296                 2                  16
## 297                 2                  11
## 298                 3                  23
## 299                 2                   7
## 300                 3                  44
## 301                 3                  22
## 302                 2                  14
## 303                 3                  13
## 304                 2                  11
## 305                 2                  19
## 306                 3                  24
## 307                 4                  38
## 308                 3                  34
## 309                 2                  22
## 310                 1                  12
## 311                 2                  13
## 312                 3                  14
## 313                 2                  36
## 314                 3                  27
## 315                 3                  13
## 316                 3                  15
## 317                 2                  29
## 318                 2                  29
## 319                 2                  21
## 320                 3                  46
## 321                 2                  15
## 322                 3                  17
## 323                 2                  29
## 324                 3                  20
## 325                 3                  28
## 326                 3                  21
## 327                 4                  28
## 328                 2                  18
## 329                 2                  16
## 330                 3                  28
## 331                 2                  36
## 332                 2                  21
## 333                 3                  32
## 334                 2                  20
## 335                 2                  21
## 336                 2                  22
## 337                 2                  30
## 338                 4                  36
## 339                 2                  29
## 340                 3                  24
## 341                 2                  19
## 342                 2                  18
## 343                 3                  18
## 344                 3                  24
## 345                 2                  28
## 346                 4                  41
## 347                 3                  27
## 348                 3                  24
## 349                 2                  18
## 350                 2                  23
## 351                 3                  24
## 352                 2                  20
## 353                 2                  12
## 354                 3                  23
## 355                 2                  23
## 356                 2                  18
## 357                 2                  23
## 358                 3                  26
## 359                 4                  30
## 360                 3                  21
## 361                 3                  25
## 362                 2                  24
## 363                 3                  32
## 364                 4                  28
## 365                 2                  40
## 366                 5                  44
## 367                 2                  21
## 368                 3                  44
## 369                 3                  33
## 370                 2                  20
## 371                 3                  28
## 372                 2                  20
## 373                 2                  25
## 374                 4                  28
## 375                 2                  29
## 376                 2                  29
## 377                 4                  44
## 378                 3                  25
## 379                 2                  24
## 380                 3                  22
## 381                 4                  41
## 382                 3                  32
## 383                 3                  62
## 384                 3                  33
## 385                 3                  41
## 386                 3                  44
## 387                 3                  30
## 388                 5                  53
## 389                 3                  26
## 390                 3                  51
## 391                 3                  40
## 392                 3                  41
## 393                 3                  53
## 394                 3                  39
## 395                 3                  23
## 396                 3                  38
## 397                 3                  25
## 398                 2                  28
## 399                 3                  34
## 400                 3                  33
## 401                 4                  52
## 402                 4                  48
## 403                 4                  35
## 404                 3                  40
## 405                 3                  31
## 406                 4                  30
## 407                 4                  41
## 408                 2                  27
## 409                 4                  41
## 410                 3                  35
## 411                 3                  49
## 412                 5                  45
## 413                 3                  40
## 414                 3                  43
## 415                 4                  47
## 416                 3                  42
## 417                 2                  50
## 418                 4                  30
## 419                 2                  37
## 420                 3                  38
## 421                 3                  42
## 422                 4                  45
## 423                 4                  32
## 424                 3                  44
## 425                 4                  65
## 426                 3                  51
## 427                 4                  44
## 428                 4                  48
## 429                 3                  34
## 430                 2                  45
## 431                 3                  35
## 432                 4                  76
## 433                 3                  51
## 434                 3                  46
## 435                 3                  40
## 436                 3                  48
## 437                 4                  85
## 438                 4                  59
## 439                 6                  54
## 440                 5                  61
## 441                 3                  44
## 442                 3                  53
## 443                 3                  44
## 444                 4                  52
## 445                 3                  53
## 446                 4                  38
## 447                 4                  76
## 448                 5                  80
## 449                 3                  50
## 450                 4                  43
## 451                 3                  64
## 452                 3                  61
## 453                 3                  67
## 454                 4                  50
## 455                 3                  58
## 456                 3                  49
## 457                 3                  77
## 458                 3                  55
## 459                 5                  57
## 460                 5                  69
## 461                 3                  69
## 462                 4                  80
## 463                 5                  58
## 464                 4                  69
## 465                 4                  63
## 466                 4                  61
## 467                 4                  65
## 468                 4                  75
## 469                 5                  82
## 470                 6                 101
## 471                 5                  83
## 472                 4                  57
## 473                 4                  76
## 474                 4                  87
## 475                 4                  61
## 476                 3                  63
## 477                 5                  83
## 478                 5                  77
## 479                 4                  67
## 480                 5                 105
## 481                 5                  89
## 482                 4                  78
## 483                 5                  89
## 484                 4                  79
## 485                 6                 100
## 486                 4                  89
## 487                 4                 100
##                        mostPointsSeasonIds penaltyMinutes playerId points
## 1                                 19921993             68  8444893      0
## 2                                 19791980              2  8445015      1
## 3                                 19801981              0  8445090      0
## 4                                 19901991             14  8445195      2
## 5                                 19831984             25  8445211      0
## 6                                 19891990              7  8445567      0
## 7                                 19871988              0  8445623      0
## 8                                 19861987              0  8445682      0
## 9                                 19811982              2  8445715      1
## 10                                19861987             92  8446071      1
## 11                                19861987              0  8446203      0
## 12                                19891990              6  8446257      1
## 13                                19891990              2  8446527      0
## 14                                19821983              0  8447180      1
## 15                                19831984              0  8447757      0
## 16                                19791980              6  8447911      0
## 17                                19861987              2  8448075      0
## 18                                19841985              6  8448272      4
## 19                                19801981              4  8448447      0
## 20                                19921993              7  8448471      6
## 21                                19891990             43  8448623      0
## 22                                19791980              4  8448906      1
## 23                                19811982             11  8449353      3
## 24                      19811982, 19831984              4  8449418      0
## 25                                19931994             41  8449442      3
## 26                                19811982              2  8449565      0
## 27                                19851986              0  8449871      0
## 28                                19911992             16  8449905      0
## 29                                19901991              2  8450199      0
## 30                                19881989              5  8450257      0
## 31                                19871988             37  8450741      9
## 32                                19791980              0  8451145      0
## 33                                19791980              0  8451244      0
## 34                      19861987, 19871988              0  8451346      0
## 35                                19791980              0  8451696      1
## 36                                19911992             34  8451710      8
## 37                                19881989             14  8451914      0
## 38                      19881989, 19891990             29  8451983      0
## 39                                19871988             11  8452207      0
## 40                                19791980             10  8452294      3
## 41                                20032004             80  8455666      5
## 42                                19901991             29  8455833      0
## 43                                19971998             83  8455875      3
## 44                                20002001              6  8457646      5
## 45                                19901991              4  8457800      4
## 46                                19992000              9  8458566      0
## 47                                19921993              2  8458821      0
## 48                      19951996, 19961997              0  8459017      0
## 49                                19961997              6  8459023      4
## 50                                19992000             71  8459161     15
## 51                      19971998, 19981999             10  8460007      2
## 52                                20012002             77  8460509      1
## 53                                20022003              0  8460523      0
## 54                                19992000             19  8462197      2
## 55                                20012002              2  8464965      0
## 56                                20032004              0  8465035      0
## 57                                20002001              0  8465184      0
## 58                                20112012              2  8465200      9
## 59                                20012002              6  8466157      0
## 60                                20022003              2  8466171      1
## 61                                20082009              8  8466203      4
## 62                                20002001              0  8467097      0
## 63                                20082009              2  8467905      2
## 64                                20032004              2  8467922      0
## 65                                20122013              0  8467925      0
## 66                                20052006              0  8469132      1
## 67                                20132014             14  8469460      4
## 68                                20022003             45  8469515      2
## 69                                20072008              0  8469522      1
## 70                                20122013              5  8469765      4
## 71                                20092010              5  8470064      0
## 72                                20072008            121  8470101      6
## 73                                20072008              0  8470208      0
## 74                                20152016              0  8470222      0
## 75                                20102011             12  8470273     10
## 76                                20052006              7  8470624      1
## 77                                20092010              6  8470678      0
## 78                                20082009              0  8471477      1
## 79                                20122013              0  8471752      0
## 80                                20122013             20  8471853      0
## 81                                20092010              0  8473496      0
## 82                                20102011             22  8473646      3
## 83                                20132014              0  8474030      0
## 84                                20142015              0  8474519      0
## 85                                20122013              2  8474615      0
## 86                                20142015              4  8475294      0
## 87                                20142015              0  8475732      2
## 88                                20142015              2  8475826      0
## 89                      20142015, 20152016              0  8475980      0
## 90                                20142015             10  8476397      0
## 91                                20162017              0  8476427      2
## 92                                20162017              6  8476807      6
## 93                                20122013              4  8476819      1
## 94                                20162017              0  8476924      0
## 95                      20142015, 20152016              7  8476944      0
## 96            20152016, 20172018, 20182019              7  8476953      0
## 97                      20152016, 20162017              0  8477566      2
## 98                                20172018             19  8477981      3
## 99                      20172018, 20182019              2  8478462      0
## 100                               20162017              0  8478562      0
## 101                               20162017              0  8479249      0
## 102                     20172018, 20182019              4  8479511      0
## 103                               20192020              6  8479328      1
## 104                               20192020              4  8476207      0
## 105                               20192020              0  8480185      1
## 106                               20202021              0  8480776      0
## 107                               20202021              2  8475213      0
## 108                               20202021              0  8477046      0
## 109                               20202021              0  8480466      0
## 110                               19821983            256  8444961     10
## 111                               19801981            101  8445270     16
## 112                               19961997            128  8446417     21
## 113                               19851986              4  8447039     10
## 114                               19881989              0  8447072      2
## 115                               19811982             22  8447188      5
## 116                     19911992, 19921993             88  8447192      4
## 117                               19901991             10  8447313      6
## 118                               19941995             78  8447630     12
## 119                               19791980              4  8447821      2
## 120                               19851986              2  8447917      4
## 121                               19821983            362  8447980     19
## 122                               19831984             75  8448005     19
## 123                               19811982              2  8448952      2
## 124                               19881989             24  8448961     23
## 125                               19821983              0  8449230      3
## 126                               19801981            202  8449436     13
## 127                               19921993             69  8450270      5
## 128                               19871988            116  8451319      5
## 129                               19811982            134  8451352     12
## 130                               19801981             95  8451561     12
## 131                               19901991              6  8451849      2
## 132                               19831984              4  8452555      2
## 133                               19931994             10  8455976      3
## 134                               19921993             57  8456023     11
## 135                               19931994             49  8456513      1
## 136                               20062007              2  8459156      1
## 137                               19951996              8  8460484      5
## 138                               19961997             32  8460545      3
## 139                               20022003             20  8465041      6
## 140                               20112012             95  8467332     19
## 141                               20032004             22  8467469      3
## 142                               20032004              0  8467957      1
## 143                     20022003, 20032004              0  8468047      2
## 144                               20092010             11  8468427      4
## 145                               20072008            116  8469044      3
## 146                               20082009              0  8470131      2
## 147                               20102011              2  8470649      1
## 148                               20072008              2  8470821      1
## 149                               20102011             54  8470867      3
## 150                               20092010             12  8470988     13
## 151                               20162017              4  8471254      1
## 152                               20072008              9  8471282      3
## 153                               20112012             24  8471840      5
## 154                               20122013             17  8473734      2
## 155                               20172018             28  8475323      6
## 156                               20152016              8  8477887      2
## 157                               20182019             20  8475177     14
## 158                               20182019             10  8478056      4
## 159                               20202021             12  8479402     12
## 160                               19801981             11  8444912      6
## 161                               19861987             19  8445273      6
## 162                               19851986             53  8445604     11
## 163                               19841985             19  8445719      9
## 164                               19951996            493  8446125     13
## 165                               19951996            257  8446778     21
## 166                               19821983              2  8446977      5
## 167                               19791980             44  8447209      7
## 168                               19821983             64  8447733      3
## 169                               19791980              0  8448108      7
## 170                               19801981             41  8448905      7
## 171                               19841985             33  8450219      6
## 172                               19911992              0  8450271      4
## 173                               19931994            246  8450504      5
## 174                               19791980              0  8451324      3
## 175                               19911992             18  8451331      2
## 176                               19841985             56  8452367      5
## 177                               20012002            216  8459391      5
## 178                               19961997              7  8460573      3
## 179                               20082009             10  8464983      2
## 180                               20022003             43  8467558      9
## 181                     20022003, 20032004              6  8467937      7
## 182                               20092010             74  8469626     10
## 183                               20092010             20  8471321     12
## 184                               20102011             37  8471810      9
## 185                               20102011              4  8473444      2
## 186                               20122013              4  8473610      6
## 187                               20122013             49  8473908      4
## 188                               20142015             79  8474135     20
## 189                               20112012             18  8474220      9
## 190                               20142015             18  8474661      7
## 191                               20162017             51  8476403     11
## 192                               20202021              9  8476323      3
## 193                               20202021              8  8478904      8
## 194                               20202021              4  8475825      3
## 195                               19791980             63  8445414      6
## 196                               19831984             11  8445628     28
## 197                               19841985             42  8446985     15
## 198                               19931994             91  8447247     19
## 199                               19971998            422  8447386     11
## 200                     19961997, 19971998            142  8447477     16
## 201                               19791980             69  8447508     18
## 202                               19911992            356  8447981     20
## 203                               19881989            412  8448271     27
## 204                               19961997              2  8448489      6
## 205                               19861987            383  8448516     40
## 206                               19921993             95  8448521     26
## 207                               19941995             54  8448543     32
## 208                               19791980              2  8448612     17
## 209                               19891990            717  8448616     55
## 210                               19921993              2  8448771      5
## 211                               19881989             23  8449102     14
## 212                               19931994            124  8449137     10
## 213                               19951996            176  8449403     16
## 214                               19911992              8  8450357      9
## 215                               19791980             14  8450478      7
## 216                               19821983             80  8450798     52
## 217                               19831984             11  8451771      8
## 218                               19951996            328  8456009      9
## 219                               19941995             31  8456118     15
## 220                               19941995             31  8459015     14
## 221                               19981999            235  8459538     23
## 222                               20052006             37  8460493     23
## 223                               20022003              2  8466163      3
## 224                               20022003              2  8467337      3
## 225                               20022003             40  8467535     22
## 226                               20062007             48  8467927     25
## 227                               20022003              2  8468512      5
## 228                               20112012              8  8473568      8
## 229                               20102011              4  8474610     10
## 230                               20132014              2  8474681     10
## 231                               20172018              2  8477458     11
## 232                               20172018             16  8477591      6
## 233                               20172018             40  8477845     38
## 234                               20202021             34  8476869     11
## 235                               20202021             12  8479987     13
## 236                               20202021             17  8476975      7
## 237                               19911992             10  8445493     10
## 238                               19841985             41  8446237     16
## 239                               19901991             19  8446238     23
## 240                               19992000             45  8446305     20
## 241                               19931994             64  8447383     22
## 242                               20002001             38  8447680     18
## 243                               19921993             40  8448419      9
## 244                               19971998             42  8448764      9
## 245                               19961997            139  8448797     40
## 246                               19791980            112  8448838     22
## 247                               19811982             17  8448914     24
## 248                               19881989            101  8450341     26
## 249                               20052006             12  8450725      7
## 250                               19861987             87  8451298     12
## 251                               19891990            107  8451305     95
## 252                               19821983            128  8452235     36
## 253                               20052006             25  8458361     13
## 254                               20002001            266  8458582     17
## 255                               20092010             28  8459122      7
## 256                               19931994              2  8459363     19
## 257                               20132014             41  8462041      9
## 258                               20032004             37  8462258     14
## 259                               20052006             30  8466320      6
## 260 20022003, 20032004, 20062007, 20082009            391  8468577     69
## 261                               20092010             10  8474576     28
## 262                               20142015             38  8476465     37
## 263                               20192020             30  8477938     24
## 264                               20182019             20  8477357      8
## 265                               20192020             41  8474581     32
## 266                               19801981             95  8445723      9
## 267                               19871988             30  8446007      9
## 268                               19831984             32  8446533     30
## 269                               19821983             34  8447000     17
## 270                               19821983             16  8449100     28
## 271                               19921993            468  8449477     25
## 272                               19851986              2  8450345     10
## 273                               19931994            167  8459424     44
## 274                               20032004              8  8459521     12
## 275                               19992000             48  8467418     22
## 276                               20112012              6  8467439     12
## 277                               20032004             10  8467877      9
## 278                               20152016            115  8468493     58
## 279                               20022003             94  8468560     40
## 280                     20072008, 20092010            537  8469476    107
## 281                               20082009             57  8469619     51
## 282                               20072008             14  8469779     15
## 283                               19801981             16  8444892     17
## 284                               20002001             54  8446408     24
## 285                               19891990            485  8448413     18
## 286                               19821983             18  8448615     31
## 287                               19941995             82  8448781     21
## 288                               19811982             16  8448982     22
## 289                               19831984             17  8450384     14
## 290                               19851986            408  8450633     95
## 291                               19931994             32  8451119      8
## 292                               19871988             87  8452457      6
## 293                               19831984             60  8452694     47
## 294                               19981999             99  8457203     40
## 295                               20052006            317  8458519     67
## 296                               19931994             27  8458589     19
## 297                               19931994             84  8458946     20
## 298                               20012002            291  8459493     77
## 299                               20032004            286  8465067     10
## 300                               20052006            104  8467949     82
## 301                               20142015             38  8468639     46
## 302                               20082009             35  8470622     19
## 303                               20112012             53  8474137     33
## 304                               20182019              8  8475735     11
## 305                               20202021             14  8475855     19
## 306                               19911992             68  8445428     24
## 307                               19951996             54  8445700     51
## 308                               19971998             88  8446051     57
## 309                               19831984             12  8446535     22
## 310                               19841985             10  8446797     12
## 311                               19881989            164  8449280     19
## 312                               19871988              6  8449610     18
## 313                               19921993             78  8452353     38
## 314                               20052006            313  8456547    101
## 315                               20132014             18  8467334     13
## 316                               20112012             26  8467412     15
## 317                               20002001            167  8467889     82
## 318                               20062007            325  8467915     54
## 319                               20142015             59  8469508     40
## 320                               20092010            218  8470137    140
## 321                               20142015            149  8474089     21
## 322                               20152016             58  8476858     41
## 323                               20182019            125  8477488    127
## 324                               20192020             72  8476441     20
## 325                               19871988            147  8446181     92
## 326                               19791980             16  8448327     36
## 327                               19841985             91  8448901     28
## 328                               19821983             43  8449416     18
## 329                               19861987             48  8449420     24
## 330                               19931994             32  8450223     28
## 331                               19791980            170  8450905     49
## 332                               19891990            103  8451863     37
## 333                               19961997            620  8452371    227
## 334                               20062007             14  8465050     20
## 335                               20092010            136  8466398     25
## 336                               20132014             77  8470302     93
## 337                               20102011             48  8473571     75
## 338                               20192020             60  8476958    166
## 339                               20192020             32  8476288     33
## 340                               19911992            875  8445783    142
## 341                               19941995             29  8445979     20
## 342                               19891990            311  8446261     75
## 343                               19801981              4  8446819     19
## 344                               19851986             42  8448254     46
## 345                               19861987            265  8449774     61
## 346                               19871988           1110  8451107    175
## 347                               19811982            169  8452370     28
## 348                               20022003             22  8462081     24
## 349                               20072008             48  8465189     26
## 350                               20112012            319  8469531     68
## 351                               20072008             10  8470373     24
## 352                               20112012             30  8470618     20
## 353                               20162017             33  8473537     12
## 354                               20152016             14  8475250     46
## 355                               19821983            216  8444898     23
## 356                               19791980            186  8446940     25
## 357                               19911992            199  8448106     30
## 358                               19881989             34  8448689     29
## 359                               19951996            117  8450653    129
## 360                               20052006            337  8465166     77
## 361                               20142015             69  8474062     81
## 362                               20152016             35  8475807     43
## 363                               20172018             69  8478396     83
## 364                               19851986             63  8445207     28
## 365                               19992000             86  8446117     58
## 366                               19931994             60  8458573     77
## 367                               20062007             81  8471217     50
## 368                               20132014             28  8471284     63
## 369                               20152016             36  8471346     33
## 370                               20142015             30  8474052     34
## 371                               20182019             58  8478027     54
## 372                               19911992             88  8446163     37
## 373                               19901991            126  8446264     28
## 374                               19831984              6  8446279     39
## 375                               19921993            712  8448225     63
## 376                               19931994             44  8450595     29
## 377                               20002001            105  8458544     67
## 378                               20032004             32  8468085     35
## 379                               20112012             35  8470283     27
## 380                               20192020             20  8475287     22
## 381                               19841985           1368  8450920    115
## 382                               19791980             24  8445981     32
## 383                               19791980             42  8448468    128
## 384                               19811982            443  8448529     89
## 385                               19801981            256  8451028     55
## 386                               19992000            441  8456595    157
## 387                               20192020             74  8477998     68
## 388                               19851986            254  8445208    240
## 389                     19791980, 19801981              4  8446355     52
## 390                               19951996             46  8458983     76
## 391                               20102011             68  8466215    128
## 392                               19791980             42  8448000     41
## 393                               19831984            122  8451362    158
## 394                               19992000             38  8456882     51
## 395                               20052006            168  8459446     72
## 396                               20172018             52  8478585     69
## 397                               20182019             85  8476921     51
## 398                               19791980             13  8444913     29
## 399                               19881989             31  8448092     51
## 400                               19801981            256  8449789     59
## 401                               19801981             98  8451364     93
## 402                               20082009             82  8466035    135
## 403                               20082009             64  8470265     62
## 404                               20162017             36  8470740     49
## 405                               20132014             84  8471804     66
## 406                               20172018             81  8476934    106
## 407                               20202021             32  8480039     79
## 408                               19921993            362  8448539     27
## 409                               19881989            183  8451911    195
## 410                               19941995             26  8451994     48
## 411                               20142015            265  8475753    258
## 412                               20162017             76  8477496    188
## 413                               20182019             58  8475907     40
## 414                               20202021             36  8476389     45
## 415                               19911992             28  8444963     95
## 416                               19901991            140  8445689     73
## 417                               19811982            242  8447995     50
## 418                     19891990, 19901991            147  8448549     60
## 419                               19821983             18  8451782     37
## 420                               19871988             52  8452482     83
## 421                               20202021            121  8476462    121
## 422                               20032004            229  8467416    135
## 423                               20112012            286  8469812    180
## 424                               19881989            744  8448919    151
## 425                               19921993            276  8452584    165
## 426                               19921993             50  8458523     54
## 427                               20002001             69  8462085     61
## 428                               20152016            274  8473533    327
## 429                               20202021             91  8475799     93
## 430                               19911992            157  8447958     88
## 431                               19961997            205  8450812     84
## 432                               20052006             74  8458943    165
## 433                               20062007            222  8459547    103
## 434                               20012002            281  8460620    150
## 435                               20092010             64  8474091    107
## 436                               20152016             72  8476437    163
## 437                               19921993            220  8446003    350
## 438                               19861987            615  8446743    235
## 439                               19861987             54  8448691    119
## 440                               19841985            147  8449101    128
## 441                               19801981            120  8449629     77
## 442                               19921993             60  8452557     61
## 443                               20122013            120  8470120    105
## 444                               20002001            226  8447091    165
## 445                               19992000            343  8450900    144
## 446                               20122013            102  8473482    145
## 447                               20182019             54  8476882    260
## 448                               19791980             92  8448002    198
## 449                     19931994, 19951996             68  8448542    247
## 450                               19811982             70  8449535     60
## 451                               19891990             84  8452569    138
## 452                               20192020            160  8480830    140
## 453                               19921993             58  8446217    121
## 454                               19811982             20  8448707     90
## 455                               19981999             18  8451343     64
## 456                     20052006, 20072008            118  8464989    181
## 457                               19911992            217  8446251    102
## 458                               19851986            138  8447078    117
## 459                               20102011            291  8469462    216
## 460                               19831984            400  8449860    226
## 461                               20012002            105  8462114    348
## 462                               19801981            286  8445618    138
## 463                               19951996            198  8446675    162
## 464                               19811982             73  8451778    129
## 465                               19971998            346  8450550    176
## 466                               20062007            494  8467396    363
## 467                               20092010            144  8469638    185
## 468                               19861987             69  8444944    189
## 469                               20062007            398  8445735    473
## 470                               19891990            682  8446951   1175
## 471                               20062007            176  8458537    334
## 472                               19791980            112  8446469     96
## 473                               20052006            323  8468508    316
## 474                               19831984             85  8448304    203
## 475                               19831984             56  8446219    123
## 476                     20102011, 20162017            268  8475784    379
## 477                               20182019            134  8478427    320
## 478                               19851986            433  8446823    351
## 479                               20002001            552  8460495    416
## 480                     19791980, 19801981             42  8450981    210
## 481                               19891990           1144  8452216    403
## 482                               19951996            125  8451302     79
## 483                               19881989           1439  8446423    544
## 484                               19851986            366  8451988    328
## 485                               20052006            678  8470595    775
## 486                               19921993            195  8457921    369
## 487                               19791980            160  8451770    377
##     positionCode rookieGamesPlayed rookiePoints seasons
## 1              D                NA           NA       1
## 2              C                NA           NA       1
## 3              D                 3            0       1
## 4              D                 9            2       2
## 5              D                NA           NA       1
## 6              L                 1            0       1
## 7              D                NA           NA       1
## 8              L                 1            0       1
## 9              D                 4            1       2
## 10             R                20            1       2
## 11             R                 4            0       1
## 12             D                 6            1       2
## 13             L                NA           NA       1
## 14             C                 2            1       1
## 15             D                NA           NA       1
## 16             D                 6            0       1
## 17             R                NA           NA       1
## 18             C                13            4       1
## 19             D                 3            0       1
## 20             R                NA           NA       1
## 21             D                 9            0       1
## 22             D                NA           NA       1
## 23             C                NA           NA       1
## 24             D                 5            0       2
## 25             D                NA           NA       1
## 26             L                 7            0       1
## 27             C                 3            0       1
## 28             D                NA           NA       1
## 29             R                NA           NA       1
## 30             D                NA           NA       1
## 31             R                NA           NA       2
## 32             C                NA           NA       1
## 33             L                 7            0       1
## 34             C                NA           NA       2
## 35             R                NA           NA       1
## 36             D                14            1       3
## 37             R                 5            0       1
## 38             D                NA           NA       2
## 39             D                 2            0       1
## 40             R                NA           NA       1
## 41             D                NA           NA       1
## 42             D                 3            0       1
## 43             D                NA           NA       1
## 44             L                NA           NA       1
## 45             D                 6            4       2
## 46             R                NA           NA       1
## 47             L                 2            0       1
## 48             D                 6            0       2
## 49             R                NA           NA       2
## 50             D                20            3       6
## 51             D                15            1       3
## 52             L                NA           NA       1
## 53             L                NA           NA       1
## 54             C                26            2       3
## 55             C                NA           NA       1
## 56             R                NA           NA       1
## 57             D                 1            0       1
## 58             D                NA           NA       1
## 59             D                 2            0       1
## 60             C                NA           NA       1
## 61             D                NA           NA       1
## 62             C                 1            0       1
## 63             C                NA           NA       1
## 64             C                 2            0       1
## 65             R                NA           NA       1
## 66             L                NA           NA       2
## 67             D                NA           NA       1
## 68             D                41            2       2
## 69             C                 6            1       1
## 70             D                NA           NA       1
## 71             R                NA           NA       1
## 72             D                19            5       3
## 73             D                 1            0       1
## 74             D                NA           NA       1
## 75             D                NA           NA       1
## 76             D                10            1       1
## 77             D                NA           NA       1
## 78             C                 2            1       1
## 79             D                NA           NA       1
## 80             L                 9            0       1
## 81             L                 1            0       1
## 82             L                NA           NA       1
## 83             R                NA           NA       1
## 84             D                NA           NA       1
## 85             R                 2            0       1
## 86             D                 6            0       1
## 87             D                10            2       1
## 88             R                 3            0       1
## 89             C                 8            0       2
## 90             D                 2            0       1
## 91             R                NA           NA       1
## 92             D                NA           NA       1
## 93             C                 5            1       2
## 94             R                 2            0       1
## 95             L                 5            0       2
## 96             D                 2            0       3
## 97             L                 2            1       2
## 98             D                10            3       1
## 99             C                 6            0       2
## 100            D                NA           NA       1
## 101            C                 2            0       1
## 102            L                 7            0       2
## 103            R                 5            1       1
## 104            C                NA           NA       1
## 105            C                 8            1       1
## 106            R                 3            0       1
## 107            C                NA           NA       1
## 108            D                NA           NA       1
## 109            D                 1            0       1
## 110            D                NA           NA       2
## 111            D                NA           NA       2
## 112            D                NA           NA       2
## 113            C                NA           NA       2
## 114            C                 4            2       1
## 115            R                34            5       1
## 116            C                NA           NA       2
## 117            L                14            4       3
## 118            D                NA           NA       3
## 119            C                19            2       1
## 120            L                 6            3       3
## 121            D                NA           NA       2
## 122            D                NA           NA       5
## 123            R                 2            2       1
## 124            D                NA           NA       1
## 125            L                NA           NA       1
## 126            D                NA           NA       2
## 127            D                NA           NA       2
## 128            D                NA           NA       1
## 129            D                NA           NA       1
## 130            D                38            8       4
## 131            R                10            2       2
## 132            C                 7            2       1
## 133            D                21            3       1
## 134            L                24            8       2
## 135            R                28            1       1
## 136            R                NA           NA       1
## 137            C                23            4       3
## 138            R                NA           NA       2
## 139            C                12            2       3
## 140            D                NA           NA       2
## 141            D                25            3       1
## 142            D                 1            1       1
## 143            L                 1            1       2
## 144            D                NA           NA       1
## 145            D                NA           NA       2
## 146            C                23            2       1
## 147            C                NA           NA       1
## 148            C                 6            1       1
## 149            R                NA           NA       1
## 150            D                22           11       3
## 151            L                NA           NA       1
## 152            D                11            3       3
## 153            L                15            3       4
## 154            R                NA           NA       1
## 155            C                NA           NA       1
## 156            C                 7            2       3
## 157            D                NA           NA       1
## 158            C                20            3       2
## 159            D                42           12       2
## 160            L                NA           NA       2
## 161            R                NA           NA       1
## 162            D                NA           NA       2
## 163            D                NA           NA       3
## 164            R                NA           NA       3
## 165            D                NA           NA       3
## 166            L                11            4       2
## 167            D                NA           NA       1
## 168            R                15            3       1
## 169            L                NA           NA       1
## 170            D                NA           NA       2
## 171            D                13            4       4
## 172            C                NA           NA       1
## 173            R                NA           NA       1
## 174            R                NA           NA       1
## 175            R                NA           NA       1
## 176            R                NA           NA       1
## 177            L                NA           NA       3
## 178            L                13            3       1
## 179            L                NA           NA       1
## 180            D                18            7       2
## 181            C                19            3       3
## 182            D                NA           NA       1
## 183            D                54           12       3
## 184            D                NA           NA       2
## 185            C                13            2       1
## 186            D                37            6       2
## 187            R                NA           NA       2
## 188            D                64            8       3
## 189            R                23            2       3
## 190            D                38            6       3
## 191            D                NA           NA       2
## 192            L                NA           NA       1
## 193            C                45            8       1
## 194            D                NA           NA       1
## 195            L                24            6       1
## 196            L                35           16       2
## 197            D                63           11       2
## 198            D                NA           NA       4
## 199            L                NA           NA       2
## 200            D                NA           NA       2
## 201            L                NA           NA       1
## 202            D                NA           NA       4
## 203            D                55           13       3
## 204            L                NA           NA       1
## 205            C                NA           NA       5
## 206            D                NA           NA       2
## 207            D                NA           NA       3
## 208            C                NA           NA       1
## 209            D                NA           NA       7
## 210            R                NA           NA       1
## 211            L                NA           NA       1
## 212            D                NA           NA       1
## 213            D                NA           NA       3
## 214            L                25            8       2
## 215            D                NA           NA       1
## 216            D                48           18       4
## 217            L                23            8       1
## 218            L                53            7       3
## 219            C                16            6       2
## 220            L                21            6       3
## 221            D                23            2       4
## 222            D                NA           NA       1
## 223            L                 9            3       1
## 224            R                10            3       1
## 225            L                48           14       3
## 226            D                36           11       2
## 227            L                14            5       2
## 228            R                NA           NA       2
## 229            C                16            4       3
## 230            C                NA           NA       1
## 231            L                13            7       3
## 232            R                NA           NA       1
## 233            D                NA           NA       3
## 234            D                NA           NA       2
## 235            C                36            9       2
## 236            C                NA           NA       1
## 237            L                30           10       3
## 238            R                NA           NA       2
## 239            D                NA           NA       1
## 240            L                NA           NA       6
## 241            R                22            8       4
## 242            D                NA           NA       1
## 243            D                23            8       3
## 244            R                NA           NA       1
## 245            D                NA           NA       4
## 246            D                NA           NA       2
## 247            L                NA           NA       2
## 248            C                NA           NA       2
## 249            R                NA           NA       1
## 250            L                NA           NA       1
## 251            D                64           35       7
## 252            D                49           13       3
## 253            C                NA           NA       1
## 254            D                NA           NA       3
## 255            C                NA           NA       1
## 256            C                NA           NA       2
## 257            R                NA           NA       1
## 258            D                NA           NA       1
## 259            L                NA           NA       1
## 260            D                37            5       9
## 261            L                31            9       7
## 262            D                48           12       5
## 263            D                67            8       4
## 264            R                34            8       1
## 265            D                NA           NA       2
## 266            L                43            8       2
## 267            C                NA           NA       1
## 268            D                NA           NA       2
## 269            C                30            8       3
## 270            C                NA           NA       1
## 271            L                41            7       5
## 272            L                NA           NA       1
## 273            D                81           30       2
## 274            C                NA           NA       1
## 275            L                81           12       4
## 276            D                NA           NA       1
## 277            R                 8            1       2
## 278            D                NA           NA       4
## 279            L                44           14       5
## 280            D                NA           NA       9
## 281            D                NA           NA       3
## 282            C                NA           NA       3
## 283            D                NA           NA       1
## 284            R                NA           NA       1
## 285            R                NA           NA       4
## 286            D                NA           NA       1
## 287            R                NA           NA       3
## 288            C                NA           NA       1
## 289            R                NA           NA       2
## 290            D                NA           NA       7
## 291            R                NA           NA       2
## 292            L                NA           NA       1
## 293            C                NA           NA       3
## 294            C                NA           NA       4
## 295            D                NA           NA       5
## 296            L                68           16       2
## 297            C                42            9       3
## 298            D                47            6       8
## 299            R                48            3       3
## 300            D                NA           NA       4
## 301            D                NA           NA       3
## 302            R                NA           NA       2
## 303            L                23            2       5
## 304            C                NA           NA       1
## 305            R                NA           NA       1
## 306            D                NA           NA       2
## 307            D                NA           NA       3
## 308            D                NA           NA       3
## 309            L                NA           NA       1
## 310            L                33           12       2
## 311            L                NA           NA       3
## 312            R                28           14       2
## 313            D                NA           NA       2
## 314            D                NA           NA       6
## 315            C                NA           NA       1
## 316            L                NA           NA       1
## 317            D                31            4       6
## 318            D                NA           NA       3
## 319            C                NA           NA       3
## 320            D                NA           NA       5
## 321            C                NA           NA       2
## 322            L                41           17       4
## 323            D                69           16       6
## 324            D                NA           NA       1
## 325            D                67           12       7
## 326            C                32           21       2
## 327            R                NA           NA       1
## 328            R                55           18       2
## 329            D                NA           NA       3
## 330            D                NA           NA       1
## 331            D                NA           NA       2
## 332            C                70           21       4
## 333            D                NA           NA      13
## 334            C                NA           NA       1
## 335            R                NA           NA       2
## 336            R                13            1       7
## 337            D                76           30       4
## 338            D                63           20       6
## 339            L                NA           NA       2
## 340            D                63           12      11
## 341            C                NA           NA       2
## 342            L                NA           NA       5
## 343            L                NA           NA       2
## 344            C                NA           NA       3
## 345            D                78           26       3
## 346            D                41            8       7
## 347            D                NA           NA       2
## 348            L                NA           NA       1
## 349            R                NA           NA       2
## 350            D                NA           NA       6
## 351            C                NA           NA       1
## 352            R                NA           NA       1
## 353            L                NA           NA       1
## 354            C                41           18       3
## 355            L                NA           NA       1
## 356            L                NA           NA       2
## 357            R                NA           NA       2
## 358            C                NA           NA       2
## 359            L                NA           NA       7
## 360            R                44            1       7
## 361            C                32            9       5
## 362            C                NA           NA       3
## 363            D                79           22       3
## 364            R                NA           NA       2
## 365            D                NA           NA       3
## 366            C                59           33       2
## 367            L                29           11       3
## 368            D                NA           NA       2
## 369            R                NA           NA       1
## 370            L                57           20       4
## 371            C                11            2       4
## 372            L                NA           NA       5
## 373            L                NA           NA       2
## 374            R                NA           NA       2
## 375            C                NA           NA       5
## 376            L                NA           NA       1
## 377            D                NA           NA       2
## 378            R                NA           NA       3
## 379            C                NA           NA       2
## 380            L                NA           NA       1
## 381            L                NA           NA       6
## 382            C                NA           NA       1
## 383            C                NA           NA       3
## 384            D                NA           NA       4
## 385            R                NA           NA       3
## 386            D                NA           NA       6
## 387            L                77           15       4
## 388            D                NA           NA       6
## 389            C                NA           NA       2
## 390            C                39           18       3
## 391            D                NA           NA       5
## 392            R                NA           NA       1
## 393            D                NA           NA       4
## 394            R                NA           NA       2
## 395            C                NA           NA       5
## 396            C                NA           NA       3
## 397            L                NA           NA       3
## 398            R                64           28       2
## 399            R                60           34       2
## 400            C                77           33       2
## 401            D                NA           NA       2
## 402            L                NA           NA       4
## 403            D                22            5       4
## 404            R                NA           NA       2
## 405            C                NA           NA       3
## 406            L                57           16       6
## 407            C                64           36       4
## 408            L                NA           NA       2
## 409            L                80           19       7
## 410            C                NA           NA       2
## 411            D                66           22       8
## 412            C                58           21       5
## 413            L                NA           NA       1
## 414            C                NA           NA       2
## 415            R                NA           NA       3
## 416            R                NA           NA       2
## 417            L                NA           NA       1
## 418            L                58           30       2
## 419            L                62           37       1
## 420            C                NA           NA       3
## 421            D                NA           NA       3
## 422            C                76           21       6
## 423            R                49           13       8
## 424            R                31           11       9
## 425            D                NA           NA       4
## 426            L                81           51       3
## 427            R                73           44       4
## 428            C                NA           NA       9
## 429            R                NA           NA       3
## 430            C                78           43       2
## 431            R                NA           NA       4
## 432            L                NA           NA       4
## 433            R                NA           NA       4
## 434            L                33            6       6
## 435            C                50            6       4
## 436            C                80           33       5
## 437            C                NA           NA       6
## 438            C                55           48       7
## 439            L                47           15       5
## 440            C                NA           NA       3
## 441            R                NA           NA       3
## 442            C                19            5       5
## 443            R                NA           NA       3
## 444            L                NA           NA       5
## 445            L                NA           NA       3
## 446            L                NA           NA       6
## 447            L                NA           NA       5
## 448            D                NA           NA       3
## 449            C                NA           NA       8
## 450            C                27           17       3
## 451            R                76           59       4
## 452            R                82           37       3
## 453            L                NA           NA       2
## 454            C                NA           NA       2
## 455            R                NA           NA       2
## 456            C                NA           NA       4
## 457            C                NA           NA       3
## 458            R                NA           NA       3
## 459            L                NA           NA       7
## 460            R                52           15       7
## 461            R                35            9       8
## 462            L                NA           NA       3
## 463            R                NA           NA       4
## 464            L                NA           NA       3
## 465            C                NA           NA       3
## 466            L                81           40       9
## 467            L                NA           NA       5
## 468            R                NA           NA       4
## 469            C                NA           NA      10
## 470            C                59           68      16
## 471            L                NA           NA       5
## 472            L                NA           NA       3
## 473            R                NA           NA       8
## 474            C                NA           NA       3
## 475            R                NA           NA       3
## 476            L                82           63       8
## 477            C                82           49       5
## 478            C                44           28       7
## 479            C                65           27       9
## 480            C                NA           NA       2
## 481            R                NA           NA       6
## 482            L                NA           NA       2
## 483            R                57           41      12
## 484            L                76           72       6
## 485            C                81           31      12
## 486            L                64           31       8
## 487            L                NA           NA       5
franchise_detail <- GET("https://records.nhl.com/site/api/franchise-detail?cayenneExp=mostRecentTeamId=26")
franchise_detail.text <- content(franchise_detail, "text")
## No encoding supplied: defaulting to UTF-8.
franchise_detail.json <- fromJSON(franchise_detail.text, flatten=TRUE)
franchise_detail.json$data
##   id active
## 1 14   TRUE
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 captainHistory
## 1 <ul class="striped-list">\r\n\t<li>Anze Kopitar: 2016-17 &ndash;&nbsp;Present</li>\r\n\t<li>Dustin Brown: 2008-09 &ndash;&nbsp;2015-16</li>\r\n\t<li>Rob Blake: 2007-08</li>\r\n\t<li>Mattias Norstrom: 2001-02 &ndash;&nbsp;2006-07</li>\r\n\t<li>Rob Blake: 1996-97 &ndash;&nbsp;2000-01</li>\r\n\t<li>Wayne Gretzky and Rob Blake: 1995-96</li>\r\n\t<li>Wayne Gretzky: 1993-94 &ndash;&nbsp;1994-95</li>\r\n\t<li>Wayne Gretzky and Luc Robitaille: 1992-93</li>\r\n\t<li>Wayne Gretzky: 1989-90 &ndash;&nbsp;1991-92</li>\r\n\t<li>Dave Taylor: 1985-86 &ndash;&nbsp;1988-89</li>\r\n\t<li>Terry Ruskowski: 1983-84 &ndash;&nbsp;1984-85</li>\r\n\t<li>Dave Lewis: 1981-82 &ndash;&nbsp;1982-83</li>\r\n\t<li>Mike Murphy: 1975-76 &ndash;&nbsp;1980-81</li>\r\n\t<li>Terry Harper: 1973-74 &ndash;&nbsp;1974-75</li>\r\n\t<li>Bob Pulford: 1971-72 &ndash;&nbsp;1972-73</li>\r\n\t<li>Larry Cahan: 1969-70 &ndash;&nbsp;1970-71</li>\r\n\t<li>Bob Wall: 1967-68 &ndash;&nbsp;1968-69</li>\r\n</ul>\r\n
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       coachingHistory
## 1 <ul class="striped-list">\r\n\t<li>Todd McLellan: Oct. 5, 2019 &ndash; Present</li>\r\n\t<li>Willie Desjardins: Nov. 6, 2018 &ndash; April 6, 2019</li>\r\n\t<li>John Stevens: Oct. 5, 2017 &ndash; Nov. 3, 2018</li>\r\n\t<li>Darryl Sutter: Dec. 22, 2011 &ndash; April 9, 2017</li>\r\n\t<li>John Stevens: Dec. 13-19, 2011</li>\r\n\t<li>Terry Murray: Oct. 11, 2008 &ndash; Dec. 10, 2011</li>\r\n\t<li>Marc Crawford: Oct. 6, 2006 &ndash; April 5, 2008</li>\r\n\t<li>John Torchetti: March 25&nbsp;&ndash; April 17, 2006</li>\r\n\t<li>Andy Murray: Oct. 2, 1999 &ndash; March 20, 2006</li>\r\n\t<li>Larry Robinson: Oct. 7, 1995 &ndash; April 18, 1999</li>\r\n\t<li>Rogie Vachon: April 21&nbsp;&ndash; May 3, 1995</li>\r\n\t<li>Barry Melrose: Oct. 6, 1992 &ndash; April 19, 1995</li>\r\n\t<li>Tom Webster: Oct. 5, 1989 &ndash; April 28, 1992</li>\r\n\t<li>Robbie Ftorek: Dec. 9, 1987 &ndash; April 24, 1989</li>\r\n\t<li>Rogie Vachon: Dec. 6,&nbsp;1987</li>\r\n\t<li>Mike Murphy: Jan. 10&nbsp;&ndash; Dec. 5, 1987</li>\r\n\t<li>Pat Quinn: Oct. 11, 1984 &ndash; Jan. 8, 1987</li>\r\n\t<li>Roger Neilson: Feb. 2&nbsp;&ndash; March 31, 1984</li>\r\n\t<li>Rogie Vachon: Jan. 27-28, 1984</li>\r\n\t<li>Don Perry: Jan. 12, 1982 &ndash; Jan. 25, 1984</li>\r\n\t<li>Parker MacDonald: Oct. 7, 1981 &ndash; Jan. 10, 1982</li>\r\n\t<li>Bob Berry: Oct. 11, 1978 &ndash; April 12, 1981</li>\r\n\t<li>Ron Stewart: Oct. 12, 1977 &ndash; April 13, 1978</li>\r\n\t<li>Bob Pulford: Oct. 7, 1972 &ndash; April 21, 1977</li>\r\n\t<li>Fred Glover: Oct. 30, 1971 &ndash; April 1, 1972</li>\r\n\t<li>Larry Regan: Oct. 9, 1970 &ndash; Oct. 27, 1971</li>\r\n\t<li>Johnny Wilson: Dec. 15, 1969 &ndash; April 4, 1970</li>\r\n\t<li>Hal Laycoe: Oct. 11&nbsp;&ndash; Dec. 13, 1969</li>\r\n\t<li>Red Kelly: Oct. 14, 1967 &ndash; April 20, 1969</li>\r\n\t<li>* <em>Date range indicates first and last games coached during tenure (regular season or playoffs)</em></li>\r\n</ul>\r\n
##           dateAwarded                                   directoryUrl
## 1 1967-06-05T00:00:00 https://www.nhl.com/kings/team/staff-directory
##   firstSeasonId
## 1      19671968
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          generalManagerHistory
## 1 <ul class="striped-list">\r\n\t<li>Rob Blake: April 10, 2017 &ndash; Present</li>\r\n\t<li>Dean Lombardi: April 21, 2006 &ndash; April 10, 2017</li>\r\n\t<li>Dave Taylor: April 22, 1997 &ndash; April 18, 2006</li>\r\n\t<li>Sam McMaster: May 24, 1994 &ndash; April 22, 1997</li>\r\n\t<li>Nick Beverley: June 25, 1992 &ndash; May 18, 1994</li>\r\n\t<li>Rogie Vachon: Jan. 30, 1984 &ndash; June 25, 1992</li>\r\n\t<li>George Maguire: May 28, 1977 &ndash; Jan. 30, 1984</li>\r\n\t<li>Jake Milford: Dec. 17, 1973 &ndash; May 26, 1977</li>\r\n\t<li>Larry Regan: May 17, 1967 &ndash; Dec. 17, 1973</li>\r\n\t<li>* <em>Date range indicates first and last days of tenure</em></li>\r\n</ul>\r\n
##                                                              heroImageUrl
## 1 https://records.nhl.com/site/asset/public/ext/hero/Team Pages/Kings.jpg
##   mostRecentTeamId
## 1               26
##                                                                                                                                                                                                                                                                                                                                                                            retiredNumbersSummary
## 1 <ul class="striped-list">\r\n\t<li>4 &ndash;&nbsp;Rob Blake (1990-01, 2006-08)</li>\r\n\t<li>16 &ndash;&nbsp;Marcel Dionne (1975-87)</li>\r\n\t<li>18 &ndash;&nbsp;Dave Taylor (1977-94)</li>\r\n\t<li>20 &ndash;&nbsp;Luc Robitaille (1986-94, 1997-01, 2003-06)</li>\r\n\t<li>30 &ndash;&nbsp;Rogie Vachon (1971-78)</li>\r\n\t<li>99 &ndash;&nbsp;Wayne Gretzky (1988-96)</li>\r\n</ul>\r\n
##   teamAbbrev      teamFullName
## 1        LAK Los Angeles Kings

NHL stats API

team_stats <- GET("https://statsapi.web.nhl.com/api/v1/teams?expand=team.stats")
team_stats.text <- content(team_stats, "text")
team_stats.json <- fromJSON(team_stats.text, flatten=TRUE)
team_stats.json$teams
##    id                  name             link abbreviation       teamName
## 1   1     New Jersey Devils  /api/v1/teams/1          NJD         Devils
## 2   2    New York Islanders  /api/v1/teams/2          NYI      Islanders
## 3   3      New York Rangers  /api/v1/teams/3          NYR        Rangers
## 4   4   Philadelphia Flyers  /api/v1/teams/4          PHI         Flyers
## 5   5   Pittsburgh Penguins  /api/v1/teams/5          PIT       Penguins
## 6   6         Boston Bruins  /api/v1/teams/6          BOS         Bruins
## 7   7        Buffalo Sabres  /api/v1/teams/7          BUF         Sabres
## 8   8    Montréal Canadiens  /api/v1/teams/8          MTL      Canadiens
## 9   9       Ottawa Senators  /api/v1/teams/9          OTT       Senators
## 10 10   Toronto Maple Leafs /api/v1/teams/10          TOR    Maple Leafs
## 11 12   Carolina Hurricanes /api/v1/teams/12          CAR     Hurricanes
## 12 13      Florida Panthers /api/v1/teams/13          FLA       Panthers
## 13 14   Tampa Bay Lightning /api/v1/teams/14          TBL      Lightning
## 14 15   Washington Capitals /api/v1/teams/15          WSH       Capitals
## 15 16    Chicago Blackhawks /api/v1/teams/16          CHI     Blackhawks
## 16 17     Detroit Red Wings /api/v1/teams/17          DET      Red Wings
## 17 18   Nashville Predators /api/v1/teams/18          NSH      Predators
## 18 19       St. Louis Blues /api/v1/teams/19          STL          Blues
## 19 20        Calgary Flames /api/v1/teams/20          CGY         Flames
## 20 21    Colorado Avalanche /api/v1/teams/21          COL      Avalanche
## 21 22       Edmonton Oilers /api/v1/teams/22          EDM         Oilers
## 22 23     Vancouver Canucks /api/v1/teams/23          VAN        Canucks
## 23 24         Anaheim Ducks /api/v1/teams/24          ANA          Ducks
## 24 25          Dallas Stars /api/v1/teams/25          DAL          Stars
## 25 26     Los Angeles Kings /api/v1/teams/26          LAK          Kings
## 26 28       San Jose Sharks /api/v1/teams/28          SJS         Sharks
## 27 29 Columbus Blue Jackets /api/v1/teams/29          CBJ   Blue Jackets
## 28 30        Minnesota Wild /api/v1/teams/30          MIN           Wild
## 29 52         Winnipeg Jets /api/v1/teams/52          WPG           Jets
## 30 53       Arizona Coyotes /api/v1/teams/53          ARI        Coyotes
## 31 54  Vegas Golden Knights /api/v1/teams/54          VGK Golden Knights
## 32 55        Seattle Kraken /api/v1/teams/55          SEA         Kraken
##    locationName firstYearOfPlay
## 1    New Jersey            1982
## 2      New York            1972
## 3      New York            1926
## 4  Philadelphia            1967
## 5    Pittsburgh            1967
## 6        Boston            1924
## 7       Buffalo            1970
## 8      Montréal            1909
## 9        Ottawa            1990
## 10      Toronto            1917
## 11     Carolina            1979
## 12      Florida            1993
## 13    Tampa Bay            1991
## 14   Washington            1974
## 15      Chicago            1926
## 16      Detroit            1926
## 17    Nashville            1997
## 18    St. Louis            1967
## 19      Calgary            1980
## 20     Colorado            1979
## 21     Edmonton            1979
## 22    Vancouver            1970
## 23      Anaheim            1993
## 24       Dallas            1967
## 25  Los Angeles            1967
## 26     San Jose            1990
## 27     Columbus            1997
## 28    Minnesota            1997
## 29     Winnipeg            2011
## 30      Arizona            1979
## 31        Vegas            2016
## 32      Seattle            <NA>
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    teamStats
## 1              56, NA, 19, 28th, 30, 29th, 7, 15th, 45, 29th, 40.2, 29th, 2.589, 26th, 3.375, 28th, 0.8293, 21st, 14.2, 28th, 22, 28th, 43, 30th, 155, 23rd, 71.0, 31st, 28.7857, 24th, 31.0179, 22nd, 0.552, 22nd, 0.111, 31st, 0.737, 19th, 0.733, 28th, 0.211, 31st, 0.417, 31st, 3180, 8th, 1481, 27th, 1699, 30th, 46.6, 27th, 9, NA, 0.891, NA, NA, 6th, NA, 29th, NA, 24th, 1, 1, New Jersey Devils, New Jersey Devils, /api/v1/teams/1, /api/v1/teams/1, statsSingleSeason, R, Regular season, FALSE
## 2                     56, NA, 32, 12th, 17, 11th, 7, 11th, 71, 12th, 63.4, 12th, 2.714, 21st, 2.232, 2nd, 1.2418, 7th, 18.8, 20th, 27, 24th, 22, 2nd, 144, 28th, 83.7, 6th, 28.9821, 22nd, 28.3929, 10th, 0.821, 10th, 0.321, 16th, 0.833, 7th, 0.842, 20th, 0.69, 4th, 0.44, 4th, 2916, 31st, 1498, 25th, 1418, 2nd, 51.4, 9th, 9.4, NA, 0.921, NA, NA, 2nd, NA, 1st, NA, 17th, 2, 2, New York Islanders, New York Islanders, /api/v1/teams/2, /api/v1/teams/2, statsSingleSeason, R, Regular season, FALSE
## 3                 56, NA, 27, 16th, 23, 18th, 6, 17th, 60, 17th, 53.6, 17th, 3.143, 10th, 2.768, 14th, 1.0943, 13th, 20.7, 14th, 37, 10th, 30, 12th, 179, 4th, 82.2, 10th, 28.6964, 25th, 29.7143, 13th, 0.7, 12th, 0.231, 24th, 0.739, 16th, 0.808, 23rd, 0.545, 14th, 0.484, 14th, 3026, 26th, 1346, 31st, 1680, 29th, 44.5, 31st, 11, NA, 0.907, NA, NA, 20th, NA, 12th, NA, 4th, 3, 3, New York Rangers, New York Rangers, /api/v1/teams/3, /api/v1/teams/3, statsSingleSeason, R, Regular season, FALSE
## 4             56, NA, 25, 18th, 23, 19th, 8, 8th, 58, 19th, 51.8, 19th, 2.857, 15th, 3.518, 31st, 0.806, 23rd, 19.2, 18th, 32, 15th, 45, 31st, 167, 12th, 73.0, 30th, 30.2143, 10th, 29.2143, 12th, 0.609, 23rd, 0.333, 11th, 0.769, 10th, 0.833, 21st, 0.441, 22nd, 0.455, 22nd, 3217, 6th, 1738, 3rd, 1479, 8th, 54.0, 2nd, 9.5, NA, 0.88, NA, NA, 17th, NA, 31st, NA, 16th, 4, 4, Philadelphia Flyers, Philadelphia Flyers, /api/v1/teams/4, /api/v1/teams/4, statsSingleSeason, R, Regular season, FALSE
## 5                       56, NA, 37, 4th, 16, 7th, 3, 25th, 77, 7th, 68.8, 7th, 3.446, 2nd, 2.768, 13th, 1.27, 5th, 23.7, 4th, 36, 12th, 35, 22nd, 152, 25th, 77.4, 27th, 30.0714, 12th, 29.9821, 15th, 0.793, 7th, 0.519, 2nd, 0.846, 6th, 0.926, 7th, 0.655, 6th, 0.68, 6th, 3191, 7th, 1573, 11th, 1618, 23rd, 49.3, 21st, 11.5, NA, 0.908, NA, NA, 11th, NA, 10th, NA, 1st, 5, 5, Pittsburgh Penguins, Pittsburgh Penguins, /api/v1/teams/5, /api/v1/teams/5, statsSingleSeason, R, Regular season, FALSE
## 6                               56, NA, 33, 11th, 16, 9th, 7, 10th, 73, 10th, 65.2, 10th, 2.929, 14th, 2.393, 5th, 1.1383, 12th, 21.9, 10th, 35, 14th, 25, 3rd, 160, 16th, 86.0, 2nd, 33.3214, 3rd, 27.0714, 2nd, 0.735, 5th, 0.364, 17th, 0.909, 2nd, 0.885, 11th, 0.615, 10th, 0.467, 10th, 3169, 9th, 1751, 2nd, 1418, 1st, 55.2, 1st, 8.8, NA, 0.912, NA, NA, 28th, NA, 5th, NA, 26th, 6, 6, Boston Bruins, Boston Bruins, /api/v1/teams/6, /api/v1/teams/6, statsSingleSeason, R, Regular season, FALSE
## 7                    56, NA, 15, 31st, 34, 31st, 7, 16th, 37, 31st, 33.0, 31st, 2.393, 29th, 3.5, 30th, 0.635, 31st, 21.0, 12th, 30, 20th, 31, 15th, 143, 29th, 77.7, 26th, 28.4286, 26th, 33.7321, 31st, 0.421, 31st, 0.189, 23rd, 0.364, 31st, 0.667, 30th, 0.357, 27th, 0.244, 27th, 3053, 24th, 1514, 21st, 1539, 13th, 49.6, 19th, 8.4, NA, 0.896, NA, NA, 3rd, NA, 26th, NA, 28th, 7, 7, Buffalo Sabres, Buffalo Sabres, /api/v1/teams/7, /api/v1/teams/7, statsSingleSeason, R, Regular season, FALSE
## 8                   56, NA, 24, 19th, 21, 15th, 11, 3rd, 59, 18th, 52.7, 18th, 2.821, 17th, 2.946, 18th, 1.0291, 17th, 19.2, 17th, 29, 22nd, 37, 26th, 151, 26th, 78.5, 23rd, 31.1786, 7th, 28.1964, 7th, 0.613, 16th, 0.2, 27th, 0.7, 22nd, 0.9, 8th, 0.485, 16th, 0.318, 16th, 3114, 17th, 1507, 23rd, 1607, 22nd, 48.4, 25th, 9, NA, 0.896, NA, NA, 24th, NA, 27th, NA, 23rd, 8, 8, Montréal Canadiens, Montréal Canadiens, /api/v1/teams/8, /api/v1/teams/8, statsSingleSeason, R, Regular season, FALSE
## 9                  56, NA, 23, 23rd, 28, 25th, 5, 22nd, 51, 23rd, 45.5, 23rd, 2.768, 20th, 3.375, 27th, 0.803, 24th, 15.5, 26th, 27, 25th, 36, 24th, 174, 10th, 79.0, 20th, 29.6964, 16th, 32.125, 27th, 0.667, 21st, 0.219, 20th, 0.867, 4th, 0.85, 19th, 0.409, 23rd, 0.452, 23rd, 3100, 21st, 1469, 28th, 1631, 25th, 47.4, 26th, 9.3, NA, 0.895, NA, NA, 22nd, NA, 28th, NA, 18th, 9, 9, Ottawa Senators, Ottawa Senators, /api/v1/teams/9, /api/v1/teams/9, statsSingleSeason, R, Regular season, FALSE
## 10                  56, NA, 35, 8th, 14, 5th, 7, 9th, 77, 5th, 68.8, 5th, 3.321, 6th, 2.643, 7th, 1.375, 3rd, 20.0, 16th, 31, 19th, 31, 13th, 155, 20th, 78.5, 24th, 31.2679, 6th, 27.8214, 5th, 0.735, 4th, 0.455, 13th, 0.692, 24th, 0.8, 24th, 0.559, 13th, 0.75, 13th, 2981, 27th, 1523, 18th, 1458, 3rd, 51.1, 10th, 10.6, NA, 0.905, NA, NA, 5th, NA, 15th, NA, 6th, 10, 10, Toronto Maple Leafs, Toronto Maple Leafs, /api/v1/teams/10, /api/v1/teams/10, statsSingleSeason, R, Regular season, FALSE
## 11                          56, NA, 36, 5th, 12, 1st, 8, 7th, 80, 3rd, 71.4, 3rd, 3.125, 11th, 2.393, 4th, 1.3086, 4th, 25.6, 2nd, 42, 3rd, 26, 4th, 164, 14th, 85.2, 3rd, 32.0357, 5th, 28.2321, 8th, 0.735, 3rd, 0.5, 9th, 0.81, 9th, 0.862, 16th, 0.639, 8th, 0.632, 8th, 3425, 1st, 1845, 1st, 1580, 19th, 53.9, 3rd, 9.8, NA, 0.915, NA, NA, 26th, NA, 3rd, NA, 12th, 12, 12, Carolina Hurricanes, Carolina Hurricanes, /api/v1/teams/12, /api/v1/teams/12, statsSingleSeason, R, Regular season, FALSE
## 12                          56, NA, 37, 3rd, 14, 4th, 5, 19th, 79, 4th, 70.5, 4th, 3.357, 4th, 2.696, 9th, 1.2553, 6th, 20.5, 15th, 39, 5th, 34, 20th, 190, 2nd, 79.8, 18th, 34.8929, 1st, 30.0357, 16th, 0.714, 13th, 0.607, 1st, 0.737, 17th, 0.929, 5th, 0.622, 9th, 0.75, 9th, 3330, 2nd, 1671, 5th, 1659, 26th, 50.2, 15th, 9.6, NA, 0.91, NA, NA, 19th, NA, 8th, NA, 15th, 13, 13, Florida Panthers, Florida Panthers, /api/v1/teams/13, /api/v1/teams/13, statsSingleSeason, R, Regular season, FALSE
## 13                          56, NA, 36, 7th, 17, 10th, 3, 26th, 75, 9th, 67.0, 9th, 3.214, 9th, 2.589, 6th, 1.1443, 10th, 22.2, 9th, 40, 4th, 29, 9th, 180, 3rd, 84.2, 4th, 30.2143, 9th, 28.2679, 9th, 0.786, 11th, 0.5, 3rd, 0.909, 1st, 1, 1st, 0.655, 7th, 0.64, 7th, 3127, 15th, 1567, 12th, 1560, 16th, 50.1, 16th, 10.6, NA, 0.908, NA, NA, 29th, NA, 9th, NA, 7th, 14, 14, Tampa Bay Lightning, Tampa Bay Lightning, /api/v1/teams/14, /api/v1/teams/14, statsSingleSeason, R, Regular season, FALSE
## 14                     56, NA, 36, 6th, 15, 6th, 5, 20th, 77, 6th, 68.8, 6th, 3.357, 5th, 2.875, 17th, 1.2336, 8th, 24.8, 3rd, 38, 6th, 26, 5th, 153, 24th, 84.0, 5th, 29.4107, 18th, 28.7857, 11th, 0.75, 6th, 0.5, 6th, 0.727, 20th, 0.929, 6th, 0.677, 5th, 0.545, 5th, 3134, 14th, 1542, 13th, 1592, 21st, 49.2, 22nd, 11.4, NA, 0.9, NA, NA, 15th, NA, 19th, NA, 2nd, 15, 15, Washington Capitals, Washington Capitals, /api/v1/teams/15, /api/v1/teams/15, statsSingleSeason, R, Regular season, FALSE
## 15           56, NA, 24, 20th, 25, 20th, 7, 12th, 55, 20th, 49.1, 20th, 2.839, 16th, 3.286, 24th, 0.8, 25th, 21.7, 11th, 38, 7th, 35, 23rd, 175, 6th, 76.8, 28th, 29.1964, 19th, 33.7143, 30th, 0.63, 20th, 0.241, 19th, 0.647, 26th, 0.789, 26th, 0.45, 21st, 0.412, 21st, 3105, 19th, 1439, 29th, 1666, 27th, 46.3, 29th, 9.7, NA, 0.903, NA, NA, 8th, NA, 17th, NA, 14th, 16, 16, Chicago Blackhawks, Chicago Blackhawks, /api/v1/teams/16, /api/v1/teams/16, statsSingleSeason, R, Regular season, FALSE
## 16           56, NA, 19, 27th, 27, 24th, 10, 4th, 48, 28th, 42.9, 28th, 2.232, 30th, 3, 20th, 0.7768, 29th, 11.4, 30th, 17, 30th, 33, 18th, 149, 27th, 78.7, 22nd, 27.2857, 30th, 31.8929, 25th, 0.5, 29th, 0.219, 22nd, 0.643, 27th, 0.833, 22nd, 0.318, 28th, 0.353, 28th, 3041, 25th, 1523, 19th, 1518, 10th, 50.1, 17th, 8.2, NA, 0.906, NA, NA, 12th, NA, 14th, NA, 31st, 17, 17, Detroit Red Wings, Detroit Red Wings, /api/v1/teams/17, /api/v1/teams/17, statsSingleSeason, R, Regular season, FALSE
## 17          56, NA, 31, 13th, 23, 16th, 2, 31st, 64, 13th, 57.1, 13th, 2.696, 22nd, 2.75, 12th, 1.1429, 11th, 17.6, 23rd, 28, 23rd, 42, 29th, 159, 17th, 75.6, 29th, 29.9821, 14th, 31.3036, 24th, 0.72, 17th, 0.419, 5th, 0.75, 13th, 0.895, 10th, 0.571, 12th, 0.519, 12th, 3149, 12th, 1628, 9th, 1521, 11th, 51.7, 7th, 9, NA, 0.912, NA, NA, 23rd, NA, 4th, NA, 22nd, 18, 18, Nashville Predators, Nashville Predators, /api/v1/teams/18, /api/v1/teams/18, statsSingleSeason, R, Regular season, FALSE
## 18                     56, NA, 27, 15th, 20, 14th, 9, 5th, 63, 14th, 56.3, 14th, 2.982, 13th, 2.982, 19th, 0.9273, 19th, 23.2, 6th, 36, 13th, 38, 28th, 155, 21st, 77.8, 25th, 28.9643, 23rd, 29.8214, 14th, 0.565, 26th, 0.424, 4th, 0.696, 23rd, 0.8, 25th, 0.5, 15th, 0.467, 15th, 3145, 13th, 1677, 4th, 1468, 5th, 53.3, 4th, 10.3, NA, 0.9, NA, NA, 21st, NA, 20th, NA, 9th, 19, 19, St. Louis Blues, St. Louis Blues, /api/v1/teams/19, /api/v1/teams/19, statsSingleSeason, R, Regular season, FALSE
## 19              56, NA, 26, 17th, 27, 23rd, 3, 28th, 55, 21st, 49.1, 21st, 2.768, 19th, 2.857, 16th, 1.0667, 16th, 18.3, 21st, 32, 16th, 34, 21st, 175, 7th, 80.2, 15th, 30.1607, 11th, 28.1607, 6th, 0.741, 14th, 0.207, 26th, 0.737, 18th, 0.957, 2nd, 0.471, 19th, 0.429, 19th, 3085, 22nd, 1541, 14th, 1544, 14th, 50.0, 18th, 9.2, NA, 0.899, NA, NA, 25th, NA, 23rd, NA, 20th, 20, 20, Calgary Flames, Calgary Flames, /api/v1/teams/20, /api/v1/teams/20, statsSingleSeason, R, Regular season, FALSE
## 20                          56, NA, 39, 2nd, 13, 2nd, 4, 23rd, 82, 1st, 73.2, 1st, 3.518, 1st, 2.357, 3rd, 1.4886, 1st, 22.7, 8th, 47, 2nd, 30, 11th, 207, 1st, 83.0, 8th, 34.5893, 2nd, 25.4107, 1st, 0.806, 2nd, 0.5, 12th, 0.87, 3rd, 0.939, 3rd, 0.733, 2nd, 0.545, 2nd, 3235, 4th, 1670, 6th, 1565, 17th, 51.6, 8th, 10.2, NA, 0.907, NA, NA, 27th, NA, 11th, NA, 10th, 21, 21, Colorado Avalanche, Colorado Avalanche, /api/v1/teams/21, /api/v1/teams/21, statsSingleSeason, R, Regular season, FALSE
## 21                       56, NA, 35, 10th, 19, 12th, 2, 30th, 72, 11th, 64.3, 11th, 3.268, 7th, 2.75, 11th, 0.9914, 18th, 27.6, 1st, 48, 1st, 27, 7th, 174, 9th, 82.5, 9th, 29.8929, 15th, 30.6607, 21st, 0.852, 9th, 0.414, 8th, 0.826, 8th, 0.897, 9th, 0.583, 11th, 0.633, 11th, 2977, 29th, 1501, 24th, 1476, 7th, 50.4, 14th, 10.9, NA, 0.91, NA, NA, 10th, NA, 7th, NA, 5th, 22, 22, Edmonton Oilers, Edmonton Oilers, /api/v1/teams/22, /api/v1/teams/22, statsSingleSeason, R, Regular season, FALSE
## 22           56, NA, 23, 24th, 29, 28th, 4, 24th, 50, 24th, 44.6, 24th, 2.643, 24th, 3.339, 26th, 0.7939, 27th, 17.4, 25th, 27, 26th, 37, 27th, 155, 22nd, 79.8, 17th, 29.0893, 20th, 33.3929, 29th, 0.72, 18th, 0.161, 28th, 0.706, 21st, 0.882, 12th, 0.357, 26th, 0.429, 26th, 3162, 10th, 1655, 8th, 1507, 9th, 52.3, 5th, 9.1, NA, 0.9, NA, NA, 30th, NA, 21st, NA, 21st, 23, 23, Vancouver Canucks, Vancouver Canucks, /api/v1/teams/23, /api/v1/teams/23, statsSingleSeason, R, Regular season, FALSE
## 23               56, NA, 17, 30th, 30, 30th, 9, 6th, 43, 30th, 38.4, 30th, 2.214, 31st, 3.161, 23rd, 0.8197, 22nd, 8.9, 31st, 11, 31st, 33, 19th, 123, 30th, 79.9, 16th, 26.7857, 31st, 30.5714, 19th, 0.444, 30th, 0.172, 30th, 0.529, 29th, 0.643, 31st, 0.316, 29th, 0.306, 29th, 3118, 16th, 1591, 10th, 1527, 12th, 51.0, 11th, 8.3, NA, 0.897, NA, NA, 16th, NA, 25th, NA, 29th, 24, 24, Anaheim Ducks, Anaheim Ducks, /api/v1/teams/24, /api/v1/teams/24, statsSingleSeason, R, Regular season, FALSE
## 24                            56, NA, 23, 22nd, 19, 13th, 14, 1st, 60, 16th, 53.6, 16th, 2.786, 18th, 2.643, 8th, 1.086, 14th, 23.6, 5th, 37, 9th, 32, 16th, 157, 18th, 79.1, 19th, 30.3393, 8th, 27.1071, 3rd, 0.654, 19th, 0.2, 25th, 0.75, 14th, 0.857, 17th, 0.457, 20th, 0.333, 20th, 3218, 5th, 1668, 7th, 1550, 15th, 51.8, 6th, 9.2, NA, 0.903, NA, NA, 9th, NA, 18th, NA, 19th, 25, 25, Dallas Stars, Dallas Stars, /api/v1/teams/25, /api/v1/teams/25, statsSingleSeason, R, Regular season, FALSE
## 25          56, NA, 21, 25th, 28, 26th, 7, 13th, 49, 25th, 43.8, 25th, 2.536, 27th, 3.018, 21st, 0.7983, 26th, 18.9, 19th, 32, 17th, 26, 6th, 169, 11th, 83.7, 7th, 28.3393, 27th, 31.1786, 23rd, 0.667, 25th, 0.2, 21st, 0.769, 11th, 0.875, 14th, 0.375, 25th, 0.333, 25th, 2981, 28th, 1509, 22nd, 1472, 6th, 50.6, 12th, 8.9, NA, 0.903, NA, NA, 13th, NA, 16th, NA, 25th, 26, 26, Los Angeles Kings, Los Angeles Kings, /api/v1/teams/26, /api/v1/teams/26, statsSingleSeason, R, Regular season, FALSE
## 26           56, NA, 21, 26th, 28, 27th, 7, 14th, 49, 26th, 43.8, 26th, 2.607, 25th, 3.5, 29th, 0.7836, 28th, 14.1, 29th, 22, 27th, 36, 25th, 156, 19th, 80.4, 14th, 30.0357, 13th, 31.9821, 26th, 0.464, 27th, 0.286, 18th, 0.688, 25th, 0.688, 29th, 0.478, 18th, 0.333, 18th, 3156, 11th, 1528, 16th, 1628, 24th, 48.4, 24th, 8.7, NA, 0.891, NA, NA, 31st, NA, 30th, NA, 27th, 28, 28, San Jose Sharks, San Jose Sharks, /api/v1/teams/28, /api/v1/teams/28, statsSingleSeason, R, Regular season, FALSE
## 27 56, NA, 18, 29th, 26, 22nd, 12, 2nd, 48, 27th, 42.9, 27th, 2.393, 28th, 3.286, 25th, 0.7405, 30th, 15.4, 27th, 18, 29th, 28, 8th, 117, 31st, 79.0, 21st, 29.0179, 21st, 32.4107, 28th, 0.406, 28th, 0.208, 29th, 0.45, 30th, 0.75, 27th, 0.273, 30th, 0.357, 30th, 3061, 23rd, 1387, 30th, 1674, 28th, 45.3, 30th, 8.2, NA, 0.899, NA, NA, 1st, NA, 22nd, NA, 30th, 29, 29, Columbus Blue Jackets, Columbus Blue Jackets, /api/v1/teams/29, /api/v1/teams/29, statsSingleSeason, R, Regular season, FALSE
## 28                      56, NA, 35, 9th, 16, 8th, 5, 21st, 75, 8th, 67.0, 8th, 3.214, 8th, 2.839, 15th, 1.1667, 9th, 17.6, 24th, 29, 21st, 31, 14th, 165, 13th, 80.8, 12th, 28.3036, 28th, 30.4464, 17th, 0.767, 8th, 0.462, 7th, 0.739, 15th, 0.875, 13th, 0.714, 3rd, 0.517, 3rd, 3261, 3rd, 1517, 20th, 1744, 31st, 46.5, 28th, 11.4, NA, 0.907, NA, NA, 14th, NA, 13th, NA, 3rd, 30, 30, Minnesota Wild, Minnesota Wild, /api/v1/teams/30, /api/v1/teams/30, statsSingleSeason, R, Regular season, FALSE
## 29                 56, NA, 30, 14th, 23, 17th, 3, 27th, 63, 15th, 56.3, 15th, 3.036, 12th, 2.714, 10th, 1.0784, 15th, 23.0, 7th, 37, 8th, 29, 10th, 161, 15th, 80.5, 13th, 29.6607, 17th, 30.5893, 20th, 0.679, 15th, 0.393, 10th, 0.762, 12th, 0.864, 15th, 0.483, 17th, 0.625, 17th, 2957, 30th, 1492, 26th, 1465, 4th, 50.5, 13th, 10.2, NA, 0.911, NA, NA, 7th, NA, 6th, NA, 11th, 52, 52, Winnipeg Jets, Winnipeg Jets, /api/v1/teams/52, /api/v1/teams/52, statsSingleSeason, R, Regular season, FALSE
## 30            56, NA, 24, 21st, 26, 21st, 6, 18th, 54, 22nd, 48.2, 22nd, 2.679, 23rd, 3.107, 22nd, 0.8696, 20th, 20.8, 13th, 37, 11th, 32, 17th, 178, 5th, 80.8, 11th, 27.4643, 29th, 30.4643, 18th, 0.609, 24th, 0.303, 14th, 0.615, 28th, 0.857, 18th, 0.4, 24th, 0.441, 24th, 3108, 18th, 1525, 17th, 1583, 20th, 49.1, 23rd, 9.8, NA, 0.898, NA, NA, 18th, NA, 24th, NA, 13th, 53, 53, Arizona Coyotes, Arizona Coyotes, /api/v1/teams/53, /api/v1/teams/53, statsSingleSeason, R, Regular season, FALSE
## 31                    56, NA, 40, 1st, 14, 3rd, 2, 29th, 82, 2nd, 73.2, 2nd, 3.393, 3rd, 2.179, 1st, 1.3776, 2nd, 17.8, 22nd, 31, 18th, 19, 1st, 174, 8th, 86.8, 1st, 32.6607, 4th, 27.2679, 4th, 0.861, 1st, 0.45, 15th, 0.846, 5th, 0.931, 4th, 0.769, 1st, 0.667, 1st, 3102, 20th, 1536, 15th, 1566, 18th, 49.5, 20th, 10.4, NA, 0.92, NA, NA, 4th, NA, 2nd, NA, 8th, 54, 54, Vegas Golden Knights, Vegas Golden Knights, /api/v1/teams/54, /api/v1/teams/54, statsSingleSeason, R, Regular season, FALSE
## 32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NULL
##       shortName                    officialSiteUrl franchiseId active
## 1    New Jersey    http://www.newjerseydevils.com/          23   TRUE
## 2  NY Islanders   http://www.newyorkislanders.com/          22   TRUE
## 3    NY Rangers     http://www.newyorkrangers.com/          10   TRUE
## 4  Philadelphia http://www.philadelphiaflyers.com/          16   TRUE
## 5    Pittsburgh     http://pittsburghpenguins.com/          17   TRUE
## 6        Boston       http://www.bostonbruins.com/           6   TRUE
## 7       Buffalo             http://www.sabres.com/          19   TRUE
## 8      Montréal          http://www.canadiens.com/           1   TRUE
## 9        Ottawa     http://www.ottawasenators.com/          30   TRUE
## 10      Toronto         http://www.mapleleafs.com/           5   TRUE
## 11     Carolina http://www.carolinahurricanes.com/          26   TRUE
## 12      Florida    http://www.floridapanthers.com/          33   TRUE
## 13    Tampa Bay  http://www.tampabaylightning.com/          31   TRUE
## 14   Washington http://www.washingtoncapitals.com/          24   TRUE
## 15      Chicago  http://www.chicagoblackhawks.com/          11   TRUE
## 16      Detroit    http://www.detroitredwings.com/          12   TRUE
## 17    Nashville http://www.nashvillepredators.com/          34   TRUE
## 18     St Louis       http://www.stlouisblues.com/          18   TRUE
## 19      Calgary      http://www.calgaryflames.com/          21   TRUE
## 20     Colorado  http://www.coloradoavalanche.com/          27   TRUE
## 21     Edmonton     http://www.edmontonoilers.com/          25   TRUE
## 22    Vancouver            http://www.canucks.com/          20   TRUE
## 23      Anaheim       http://www.anaheimducks.com/          32   TRUE
## 24       Dallas        http://www.dallasstars.com/          15   TRUE
## 25  Los Angeles            http://www.lakings.com/          14   TRUE
## 26     San Jose           http://www.sjsharks.com/          29   TRUE
## 27     Columbus        http://www.bluejackets.com/          36   TRUE
## 28    Minnesota               http://www.wild.com/          37   TRUE
## 29     Winnipeg           http://winnipegjets.com/          35   TRUE
## 30      Arizona     http://www.arizonacoyotes.com/          28   TRUE
## 31        Vegas http://www.vegasgoldenknights.com/          38   TRUE
## 32         <NA>        https://www.nhl.com/seattle          39  FALSE
##                           venue.name          venue.link   venue.city venue.id
## 1                  Prudential Center /api/v1/venues/null       Newark       NA
## 2  Nassau Veterans Memorial Coliseum /api/v1/venues/null    Uniondale       NA
## 3              Madison Square Garden /api/v1/venues/5054     New York     5054
## 4                 Wells Fargo Center /api/v1/venues/5096 Philadelphia     5096
## 5                   PPG Paints Arena /api/v1/venues/5034   Pittsburgh     5034
## 6                          TD Garden /api/v1/venues/5085       Boston     5085
## 7                     KeyBank Center /api/v1/venues/5039      Buffalo     5039
## 8                        Bell Centre /api/v1/venues/5028     Montréal     5028
## 9               Canadian Tire Centre /api/v1/venues/5031       Ottawa     5031
## 10                  Scotiabank Arena /api/v1/venues/null      Toronto       NA
## 11                         PNC Arena /api/v1/venues/5066      Raleigh     5066
## 12                       BB&T Center /api/v1/venues/5027      Sunrise     5027
## 13                      AMALIE Arena /api/v1/venues/null        Tampa       NA
## 14                 Capital One Arena /api/v1/venues/5094   Washington     5094
## 15                     United Center /api/v1/venues/5092      Chicago     5092
## 16              Little Caesars Arena /api/v1/venues/5145      Detroit     5145
## 17                 Bridgestone Arena /api/v1/venues/5030    Nashville     5030
## 18                 Enterprise Center /api/v1/venues/5076    St. Louis     5076
## 19             Scotiabank Saddledome /api/v1/venues/5075      Calgary     5075
## 20                        Ball Arena /api/v1/venues/5064       Denver     5064
## 21                      Rogers Place /api/v1/venues/5100     Edmonton     5100
## 22                      Rogers Arena /api/v1/venues/5073    Vancouver     5073
## 23                      Honda Center /api/v1/venues/5046      Anaheim     5046
## 24          American Airlines Center /api/v1/venues/5019       Dallas     5019
## 25                    STAPLES Center /api/v1/venues/5081  Los Angeles     5081
## 26            SAP Center at San Jose /api/v1/venues/null     San Jose       NA
## 27                  Nationwide Arena /api/v1/venues/5059     Columbus     5059
## 28                Xcel Energy Center /api/v1/venues/5098     St. Paul     5098
## 29                    Bell MTS Place /api/v1/venues/5058     Winnipeg     5058
## 30                  Gila River Arena /api/v1/venues/5043     Glendale     5043
## 31                    T-Mobile Arena /api/v1/venues/5178    Las Vegas     5178
## 32                              <NA>                <NA>         <NA>       NA
##      venue.timeZone.id venue.timeZone.offset venue.timeZone.tz division.id
## 1     America/New_York                    -4               EDT          25
## 2     America/New_York                    -4               EDT          25
## 3     America/New_York                    -4               EDT          25
## 4     America/New_York                    -4               EDT          25
## 5     America/New_York                    -4               EDT          25
## 6     America/New_York                    -4               EDT          25
## 7     America/New_York                    -4               EDT          25
## 8     America/Montreal                    -4               EDT          28
## 9     America/New_York                    -4               EDT          28
## 10     America/Toronto                    -4               EDT          28
## 11    America/New_York                    -4               EDT          26
## 12    America/New_York                    -4               EDT          26
## 13    America/New_York                    -4               EDT          26
## 14    America/New_York                    -4               EDT          25
## 15     America/Chicago                    -5               CDT          26
## 16     America/Detroit                    -4               EDT          26
## 17     America/Chicago                    -5               CDT          26
## 18     America/Chicago                    -5               CDT          27
## 19      America/Denver                    -6               MDT          28
## 20      America/Denver                    -6               MDT          27
## 21    America/Edmonton                    -6               MDT          28
## 22   America/Vancouver                    -7               PDT          28
## 23 America/Los_Angeles                    -7               PDT          27
## 24     America/Chicago                    -5               CDT          26
## 25 America/Los_Angeles                    -7               PDT          27
## 26 America/Los_Angeles                    -7               PDT          27
## 27    America/New_York                    -4               EDT          26
## 28     America/Chicago                    -5               CDT          27
## 29    America/Winnipeg                    -5               CDT          28
## 30     America/Phoenix                    -7               MST          27
## 31 America/Los_Angeles                    -7               PDT          27
## 32                <NA>                    NA              <NA>          NA
##       division.name          division.link conference.id conference.name
## 1   MassMutual East   /api/v1/divisions/25             6         Eastern
## 2   MassMutual East   /api/v1/divisions/25             6         Eastern
## 3   MassMutual East   /api/v1/divisions/25             6         Eastern
## 4   MassMutual East   /api/v1/divisions/25             6         Eastern
## 5   MassMutual East   /api/v1/divisions/25             6         Eastern
## 6   MassMutual East   /api/v1/divisions/25             6         Eastern
## 7   MassMutual East   /api/v1/divisions/25             6         Eastern
## 8      Scotia North   /api/v1/divisions/28             6         Eastern
## 9      Scotia North   /api/v1/divisions/28             6         Eastern
## 10     Scotia North   /api/v1/divisions/28             6         Eastern
## 11 Discover Central   /api/v1/divisions/26             6         Eastern
## 12 Discover Central   /api/v1/divisions/26             6         Eastern
## 13 Discover Central   /api/v1/divisions/26             6         Eastern
## 14  MassMutual East   /api/v1/divisions/25             6         Eastern
## 15 Discover Central   /api/v1/divisions/26             5         Western
## 16 Discover Central   /api/v1/divisions/26             6         Eastern
## 17 Discover Central   /api/v1/divisions/26             5         Western
## 18       Honda West   /api/v1/divisions/27             5         Western
## 19     Scotia North   /api/v1/divisions/28             5         Western
## 20       Honda West   /api/v1/divisions/27             5         Western
## 21     Scotia North   /api/v1/divisions/28             5         Western
## 22     Scotia North   /api/v1/divisions/28             5         Western
## 23       Honda West   /api/v1/divisions/27             5         Western
## 24 Discover Central   /api/v1/divisions/26             5         Western
## 25       Honda West   /api/v1/divisions/27             5         Western
## 26       Honda West   /api/v1/divisions/27             5         Western
## 27 Discover Central   /api/v1/divisions/26             6         Eastern
## 28       Honda West   /api/v1/divisions/27             5         Western
## 29     Scotia North   /api/v1/divisions/28             5         Western
## 30       Honda West   /api/v1/divisions/27             5         Western
## 31       Honda West   /api/v1/divisions/27             5         Western
## 32             <NA> /api/v1/divisions/null            NA            <NA>
##             conference.link franchise.franchiseId franchise.teamName
## 1     /api/v1/conferences/6                    23             Devils
## 2     /api/v1/conferences/6                    22          Islanders
## 3     /api/v1/conferences/6                    10            Rangers
## 4     /api/v1/conferences/6                    16             Flyers
## 5     /api/v1/conferences/6                    17           Penguins
## 6     /api/v1/conferences/6                     6             Bruins
## 7     /api/v1/conferences/6                    19             Sabres
## 8     /api/v1/conferences/6                     1          Canadiens
## 9     /api/v1/conferences/6                    30           Senators
## 10    /api/v1/conferences/6                     5        Maple Leafs
## 11    /api/v1/conferences/6                    26         Hurricanes
## 12    /api/v1/conferences/6                    33           Panthers
## 13    /api/v1/conferences/6                    31          Lightning
## 14    /api/v1/conferences/6                    24           Capitals
## 15    /api/v1/conferences/5                    11         Blackhawks
## 16    /api/v1/conferences/6                    12          Red Wings
## 17    /api/v1/conferences/5                    34          Predators
## 18    /api/v1/conferences/5                    18              Blues
## 19    /api/v1/conferences/5                    21             Flames
## 20    /api/v1/conferences/5                    27          Avalanche
## 21    /api/v1/conferences/5                    25             Oilers
## 22    /api/v1/conferences/5                    20            Canucks
## 23    /api/v1/conferences/5                    32              Ducks
## 24    /api/v1/conferences/5                    15              Stars
## 25    /api/v1/conferences/5                    14              Kings
## 26    /api/v1/conferences/5                    29             Sharks
## 27    /api/v1/conferences/6                    36       Blue Jackets
## 28    /api/v1/conferences/5                    37               Wild
## 29    /api/v1/conferences/5                    35               Jets
## 30    /api/v1/conferences/5                    28            Coyotes
## 31    /api/v1/conferences/5                    38     Golden Knights
## 32 /api/v1/conferences/null                    39             Kraken
##           franchise.link
## 1  /api/v1/franchises/23
## 2  /api/v1/franchises/22
## 3  /api/v1/franchises/10
## 4  /api/v1/franchises/16
## 5  /api/v1/franchises/17
## 6   /api/v1/franchises/6
## 7  /api/v1/franchises/19
## 8   /api/v1/franchises/1
## 9  /api/v1/franchises/30
## 10  /api/v1/franchises/5
## 11 /api/v1/franchises/26
## 12 /api/v1/franchises/33
## 13 /api/v1/franchises/31
## 14 /api/v1/franchises/24
## 15 /api/v1/franchises/11
## 16 /api/v1/franchises/12
## 17 /api/v1/franchises/34
## 18 /api/v1/franchises/18
## 19 /api/v1/franchises/21
## 20 /api/v1/franchises/27
## 21 /api/v1/franchises/25
## 22 /api/v1/franchises/20
## 23 /api/v1/franchises/32
## 24 /api/v1/franchises/15
## 25 /api/v1/franchises/14
## 26 /api/v1/franchises/29
## 27 /api/v1/franchises/36
## 28 /api/v1/franchises/37
## 29 /api/v1/franchises/35
## 30 /api/v1/franchises/28
## 31 /api/v1/franchises/38
## 32 /api/v1/franchises/39
team_stats2 <- GET("https://statsapi.web.nhl.com/api/v1/teams/26?expand=team.stats")
team_stats2.text <- content(team_stats2, "text")
team_stats2.json <- fromJSON(team_stats2.text, flatten=TRUE)
team_stats2.json$teams
##   id              name             link abbreviation teamName locationName
## 1 26 Los Angeles Kings /api/v1/teams/26          LAK    Kings  Los Angeles
##   firstYearOfPlay
## 1            1967
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          teamStats
## 1 56, NA, 21, 25th, 28, 26th, 7, 13th, 49, 25th, 43.8, 25th, 2.536, 27th, 3.018, 21st, 0.7983, 26th, 18.9, 19th, 32, 17th, 26, 6th, 169, 11th, 83.7, 7th, 28.3393, 27th, 31.1786, 23rd, 0.667, 25th, 0.2, 21st, 0.769, 11th, 0.875, 14th, 0.375, 25th, 0.333, 25th, 2981, 28th, 1509, 22nd, 1472, 6th, 50.6, 12th, 8.9, NA, 0.903, NA, NA, 13th, NA, 16th, NA, 25th, 26, 26, Los Angeles Kings, Los Angeles Kings, /api/v1/teams/26, /api/v1/teams/26, statsSingleSeason, R, Regular season, FALSE
##     shortName         officialSiteUrl franchiseId active venue.id
## 1 Los Angeles http://www.lakings.com/          14   TRUE     5081
##       venue.name          venue.link  venue.city   venue.timeZone.id
## 1 STAPLES Center /api/v1/venues/5081 Los Angeles America/Los_Angeles
##   venue.timeZone.offset venue.timeZone.tz division.id division.name
## 1                    -7               PDT          27    Honda West
##          division.link conference.id conference.name       conference.link
## 1 /api/v1/divisions/27             5         Western /api/v1/conferences/5
##   franchise.franchiseId franchise.teamName        franchise.link
## 1                    14              Kings /api/v1/franchises/14